mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
15 lines
231 B
C++
15 lines
231 B
C++
#ifndef NALL_MACOS_GUARD_HPP
|
|
#define NALL_MACOS_GUARD_HPP
|
|
|
|
#define Boolean CocoaBoolean
|
|
#define decimal CocoaDecimal
|
|
#define DEBUG CocoaDebug
|
|
|
|
#else
|
|
#undef NALL_MACOS_GUARD_HPP
|
|
|
|
#undef Boolean
|
|
#undef decimal
|
|
#undef DEBUG
|
|
|
|
#endif
|