mirror of
https://github.com/Marat-Tanalin/bsnes-mt.git
synced 2025-04-02 10:21:42 -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
|