You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
346 B
C
21 lines
346 B
C
#ifndef __LIBOBJC_SAFEWINDOWS_H_INCLUDED__
|
|
#define __LIBOBJC_SAFEWINDOWS_H_INCLUDED__
|
|
|
|
#pragma push_macro("BOOL")
|
|
|
|
#ifdef BOOL
|
|
#undef BOOL
|
|
#endif
|
|
#define BOOL _WINBOOL
|
|
|
|
#include <windows.h>
|
|
|
|
// Windows.h defines interface -> struct
|
|
#ifdef interface
|
|
#undef interface
|
|
#endif
|
|
|
|
#pragma pop_macro("BOOL")
|
|
|
|
#endif // __LIBOBJC_SAFEWINDOWS_H_INCLUDED__
|