| version 1.1, 2003/11/21 06:51:13 | version 1.10, 2005/03/19 23:06:18 | 
| Line 13 | Line 13 | 
 | #define OSLANG_EUC | #define OSLANG_EUC | 
 | #define OSLINEBREAK_LF | #define OSLINEBREAK_LF | 
 |  |  | 
 | typedef signed char             CHAR; |  | 
 | typedef signed int              INT; | typedef signed int              INT; | 
 |  |  | 
 | typedef unsigned char   UCHAR; | typedef unsigned char   UCHAR; | 
| Line 21  typedef unsigned short USHORT; | Line 20  typedef unsigned short USHORT; | 
 | typedef unsigned int    UINT; | typedef unsigned int    UINT; | 
 | typedef unsigned long   ULONG; | typedef unsigned long   ULONG; | 
 |  |  | 
| 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 int                             BOOL; | 
 |  | typedef signed char             CHAR; | 
 |  | typedef signed char             TCHAR; | 
 | typedef unsigned char   BYTE; | typedef unsigned char   BYTE; | 
 | typedef unsigned char   TCHAR; |  | 
 |  |  | 
 | typedef int                             BOOL; |  | 
 |  |  | 
 | #ifndef TRUE | #ifndef TRUE | 
 | #define TRUE    1 | #define TRUE    1 | 
| Line 70  typedef int    BOOL; | Line 72  typedef int    BOOL; | 
 | #define BYTESEX_LITTLE | #define BYTESEX_LITTLE | 
 | #endif  /* SDL_BYTEORDER == SDL_BIG_ENDIAN */ | #endif  /* SDL_BYTEORDER == SDL_BIG_ENDIAN */ | 
 |  |  | 
 | #define __ASSERT(s)     assert(s) |  | 
 |  |  | 
 | #define UNUSED(v)       ((void)(v)) | #define UNUSED(v)       ((void)(v)) | 
 |  |  | 
 | #ifndef NELEMENTS | #ifndef NELEMENTS | 
 | #define NELEMENTS(a)    ((int)(sizeof(a) / sizeof(a[0]))) | #define NELEMENTS(a)    ((int)(sizeof(a) / sizeof(a[0]))) | 
 | #endif | #endif | 
 |  |  | 
 |  | #define BRESULT                         UINT | 
 |  | #define OEMCHAR                         char | 
 |  | #define OEMTEXT(string)         string | 
 |  | #define OEMSPRINTF                      sprintf | 
 |  | #define OEMSTRLEN                       strlen | 
 |  |  | 
 |  | #if !defined(SIZE_VGA) | 
 |  | #define RGB16           UINT32 | 
 |  | #define SIZE_QVGA | 
 |  | #endif | 
 |  |  | 
 |  |  | 
 | #include        "common.h" | #include        "common.h" | 
 | #include        "milstr.h" | #include        "milstr.h" | 
 | #include        "_memory.h" | #include        "_memory.h" | 
| Line 85  typedef int    BOOL; | Line 97  typedef int    BOOL; | 
 | #include        "lstarray.h" | #include        "lstarray.h" | 
 | #include        "trace.h" | #include        "trace.h" | 
 |  |  | 
| #define GETTICK()       SDL_GetTicks() |  | 
| #define SPRINTF         sprintf | #define GETTICK()                       SDL_GetTicks() | 
|  | #define __ASSERT(s) | 
|  | #define SPRINTF                         sprintf | 
|  | #define STRLEN                          strlen | 
 |  |  | 
 | #define VERMOUTH_LIB | #define VERMOUTH_LIB | 
 | // #define      SOUND_CRITICAL | // #define      SOUND_CRITICAL | 
| Line 96  typedef int    BOOL; | Line 111  typedef int    BOOL; | 
 | #define SUPPORT_16BPP | #define SUPPORT_16BPP | 
 | #define MEMOPTIMIZE             2 | #define MEMOPTIMIZE             2 | 
 |  |  | 
 | #ifndef SIZE_VGA |  | 
 | #define SIZE_QVGA |  | 
 | #endif |  | 
 |  |  | 
 | #define SOUNDRESERVE    100 | #define SOUNDRESERVE    100 | 
 |  |  | 
 |  | #define SUPPORT_CRT15KHZ | 
 |  | #define SUPPORT_SWSEEKSND | 
 |  |  | 
 | #define SCREEN_BPP              16 | #define SCREEN_BPP              16 | 
 |  |  | 
 |  |  |