mirror of
https://github.com/OpenEmu/OpenEmu-SDK.git
synced 2025-11-01 10:15:12 +00:00
15 lines
414 B
Plaintext
15 lines
414 B
Plaintext
//
|
|
// Prefix header for all source files of the 'OpenEmuSystem' target in the 'OpenEmuSystem' project
|
|
//
|
|
|
|
#ifdef __OBJC__
|
|
#import <Cocoa/Cocoa.h>
|
|
#endif
|
|
|
|
#define GENERATE_PRAGMA(x) _Pragma(#x)
|
|
#define TODO(x) GENERATE_PRAGMA(message("[TODO] " #x))
|
|
#define FIXME(x) GENERATE_PRAGMA(message("[FIXME] " #x))
|
|
#define NOTE(x) GENERATE_PRAGMA(message("[NOTE] " #x))
|
|
|
|
#define BOOL_STR(value) ((value) ? "YES" : "NO")
|