Uniformize G_PLATFORM_WIN32 and G_OS_WIN32 in glib-init.c

According to build system (meson.build file), G_PLATFORM_WIN32 and G_OS_WIN32
are synonym. This commit just unify the usage of this define to prepare
for the static build conditional compilation code.
This commit is contained in:
Loic Le Page 2022-01-19 14:15:10 +01:00
parent 98880b9f99
commit 4fdbfcc9b7

View File

@ -340,7 +340,7 @@ glib_init (void)
g_error_init ();
}
#if defined (G_OS_WIN32)
#ifdef G_PLATFORM_WIN32
BOOL WINAPI DllMain (HINSTANCE hinstDLL,
DWORD fdwReason,