| version 1.1, 2003/10/16 17:59:33 | version 1.20, 2004/04/20 17:28:24 | 
| Line 8 | Line 8 | 
 |  |  | 
 | #define MACOS | #define MACOS | 
 | #define BYTESEX_BIG | #define BYTESEX_BIG | 
 |  | #define OSLANG_SJIS | 
 |  | #define OSLINEBREAK_CR | 
 |  |  | 
 | typedef char                    TCHAR; |  | 
 | typedef unsigned char   BYTE; |  | 
 |  |  | 
| typedef int                             SINT; | typedef signed int              SINT; | 
 | typedef unsigned int    UINT; | typedef unsigned int    UINT; | 
 |  |  | 
| typedef short                   SINT16; | typedef signed char             SINT8; | 
|  | typedef unsigned char   UINT8; | 
|  |  | 
|  | typedef signed short    SINT16; | 
 | typedef unsigned short  UINT16; | typedef unsigned short  UINT16; | 
 |  |  | 
| typedef int                             SINT32; | typedef signed int              SINT32; | 
 | typedef unsigned int    UINT32; | typedef unsigned int    UINT32; | 
 |  |  | 
 | typedef Boolean                 BOOL; | typedef Boolean                 BOOL; | 
 |  | typedef signed char             TCHAR; | 
 |  | typedef signed char             CHAR; | 
 |  | typedef unsigned char   BYTE; | 
 |  |  | 
 | #if 1   // for test |  | 
 | typedef unsigned short  WORD; |  | 
 | typedef unsigned int    DWORD; |  | 
 | #endif |  | 
 |  |  | 
 | #define MAX_PATH        260 | #define MAX_PATH        260 | 
 |  |  | 
| Line 47  typedef unsigned int DWORD; | Line 49  typedef unsigned int DWORD; | 
 | #include        "trace.h" | #include        "trace.h" | 
 |  |  | 
 | #define GETTICK()                       macos_gettick() | #define GETTICK()                       macos_gettick() | 
 | #define GETRAND()                       rand() |  | 
 | #define SPRINTF                         sprintf | #define SPRINTF                         sprintf | 
 |  | #define __ASSERT(s) | 
 |  |  | 
 | #define VERMOUTH_LIB | #define VERMOUTH_LIB | 
| #define SOUND_CRITICAL | // #define SOUND_CRITICAL | 
 |  |  | 
| #define SUPPORT_8BPP | #define SUPPORT_SJIS | 
|  |  | 
|  | // #define      SUPPORT_8BPP | 
|  | #ifdef NP2GCC | 
 | #define SUPPORT_16BPP | #define SUPPORT_16BPP | 
| #define SUPPORT_24BPP | #endif | 
|  | // #define      SUPPORT_24BPP | 
 | #define SUPPORT_32BPP | #define SUPPORT_32BPP | 
| #define SUPPORT_NORMALDISP | // #define SUPPORT_NORMALDISP | 
| // #define      MEMOPTIMIZE             1 | #define MEMOPTIMIZE             1 | 
 |  |  | 
 |  | #define SUPPORT_CRT15KHZ | 
 |  | #define SUPPORT_S98 | 
 |  | #define SUPPORT_SWSEEKSND | 
 |  | #define SUPPORT_HOSTDRV | 
 |  | #define SUPPORT_SASI | 
 |  | #define SUPPORT_SCSI | 
 |  | #define SUPPORT_KEYDISP | 
 |  | //#define SUPPORT_SOFTKBD | 
 |  |  | 
 |  | #define USE_RESUME | 
 |  | #define SOUNDRESERVE    80 | 
 |  |  | 
 |  | #if defined(CPUCORE_IA32) | 
 |  | typedef SInt64                  SINT64; | 
 |  | typedef UInt64                  UINT64; | 
 |  | #define INLINE                  inline | 
 |  | #define FASTCALL | 
 |  | #define CPUCALL | 
 |  | #define MEMCALL | 
 |  | #define SUPPORT_PC9821 | 
 |  | #define SUPPORT_CRT31KHZ | 
 |  | #define IA32_PAGING_EACHSIZE | 
 |  | static inline void msgbox(char* title, char* msg) { } | 
 |  | #endif |