1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
// Feel free to edit this file, it won't be regenerated by gir generator unless removed.
#include <glib.h>
#include <glib-object.h>
#ifndef G_PLATFORM_WIN32
// glib-unix.h is not included automatically
#include <glib-unix.h>
// polyfill the WIN32 constants on non-Win32 platforms
typedef enum
{
G_WIN32_OS_ANY,
G_WIN32_OS_WORKSTATION,
G_WIN32_OS_SERVER,
} GWin32OSType;
#endif
// polyfill when the platform doesn't define tracing macros
#ifndef G_TRACE_CURRENT_TIME
#define G_TRACE_CURRENT_TIME 0
#endif
// included in Gir on all platforms even though it is only present on windows
#ifndef G_WIN32_MSG_HANDLE
#define G_WIN32_MSG_HANDLE 19981206
#endif
|