1 #ifndef _KOVAN_COMPAT_HPP_
2 #define _KOVAN_COMPAT_HPP_
6 #define WIN32_LEAN_AND_MEAN
18 #define PRETTYFUNC __FUNCSIG__
19 #pragma section(".CRT$XCU", read)
20 #define INITIALIZER(f) \
21 static void __cdecl f(void); \
22 __declspec(allocate(".CRT$XCU")) void (__cdecl*f##_)(void) = f; \
23 static void __cdecl f(void)
24 typedef SSIZE_T ssize_t;
28 #define PRETTYFUNC __PRETTY_FUNCTION__
29 #define INITIALIZER(f) \
30 static void f(void) __attribute__((constructor)); \
Definition: compat.hpp:10
int microsleep(unsigned long microseconds)