| version 1.1, 2003/11/21 06:51:13 | version 1.7, 2005/02/11 21:17:22 | 
| Line 5 | Line 5 | 
 |  |  | 
 | #define SLZAURUS | #define SLZAURUS | 
 | #define BYTESEX_LITTLE | #define BYTESEX_LITTLE | 
| #define OSLANG_SJIS | #define OSLANG_EUC | 
 | #define OSLINEBREAK_CRLF | #define OSLINEBREAK_CRLF | 
 |  |  | 
 |  |  | 
 | #ifndef __GNUC__ | #ifndef __GNUC__ | 
| 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; | 
 | #else | #else | 
 | #include        <stdlib.h> | #include        <stdlib.h> | 
| 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; | 
 | #endif | #endif | 
 |  |  | 
 |  | #define BRESULT                         UINT8 | 
 |  | #define OEMCHAR                         char | 
 |  | #define OEMTEXT(string)         (string) | 
 |  | #define OEMSPRINTF                      sprintf | 
 |  | #define OEMSTRLEN                       strlen | 
 |  |  | 
 | #if !defined(SIZE_VGA) | #if !defined(SIZE_VGA) | 
 | #define RGB16           UINT32 | #define RGB16           UINT32 | 
| Line 30  typedef int    SINT32; | Line 39  typedef int    SINT32; | 
 |  |  | 
 | #include        "common.h" | #include        "common.h" | 
 | #include        "milstr.h" | #include        "milstr.h" | 
 |  | #include        "codecnv.h" | 
 | #include        "_memory.h" | #include        "_memory.h" | 
 | #include        "rect.h" | #include        "rect.h" | 
 | #include        "lstarray.h" | #include        "lstarray.h" | 
 | #include        "trace.h" | #include        "trace.h" | 
 |  |  | 
 |  |  | 
| #define GETTICK()       SDL_GetTicks() | #define GETTICK()                       SDL_GetTicks() | 
| #define SPRINTF         sprintf | #define __ASSERT(s) | 
|  | #define SPRINTF                         sprintf | 
|  | #define STRLEN                          strlen | 
 |  |  | 
 | #define VERMOUTH_LIB | #define VERMOUTH_LIB | 
 | // #define      SOUND_CRITICAL | // #define      SOUND_CRITICAL | 
 |  |  | 
| #define SUPPORT_SJIS | #define SUPPORT_EUC | 
 |  |  | 
 | #define SUPPORT_16BPP | #define SUPPORT_16BPP | 
 | #define MEMOPTIMIZE             2 | #define MEMOPTIMIZE             2 | 
 |  |  | 
 | #define SOUNDRESERVE    100 | #define SOUNDRESERVE    100 | 
 |  |  | 
 |  | #define SUPPORT_CRT15KHZ | 
 |  | #define SUPPORT_HOSTDRV | 
 |  | #define SUPPORT_SWSEEKSND | 
 |  | #define SUPPORT_SASI | 
 |  | #define SUPPORT_SCSI | 
 |  |  | 
 | #define SCREEN_BPP              16 | #define SCREEN_BPP              16 | 
 |  |  |