On Tue Jun 27 07:53:58 2023 +0000, Rémi Bernon wrote:
`wine_` prefixed helpers are there only for historical reason I believe, non-wine prefixed versions are usually preferred.
Kind of. wine/debug.h is available to winelib programs, but the wine_ prefixed helpers are available to all applications, whereas the unprefixed helpers are only available for Wine, specifically when __WINESRC__ is defined, in order to avoid polluting the global namespace. We used to use them in programs and tests because once upon a time, we didn't actually define __WINESRC__ for either of those, only dlls. (Cf. c9eee73450 and 0e681027a2.)