19 Feb
2024
19 Feb
'24
7:23 a.m.
Rémi Bernon (@rbernon) commented about dlls/kernel32/tests/forward1.c:
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#if 0 +#pragma makedep testdll +#endif + +#define WIN32_LEAN_AND_MEAN +#include <windows.h> + +BOOL WINAPI DllMain(HINSTANCE instance_new, DWORD reason, LPVOID reserved) +{ + if (reason == DLL_PROCESS_ATTACH) + DisableThreadLibraryCalls( instance_new ); + return TRUE; +} Style is inconsistent, same in various places in the other files. With `space-in-paren` style, only case where function declaration takes no space is `(void)`.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/364#note_61839