| version 1.2, 2003/11/21 06:51:16 | version 1.6, 2003/12/01 03:38:52 | 
| Line 7 | Line 7 | 
 | #define OSLINEBREAK_CRLF | #define OSLINEBREAK_CRLF | 
 |  |  | 
 |  |  | 
| typedef short                   SINT16; | typedef signed char             SINT8; | 
| typedef int                             SINT32; | typedef signed short    SINT16; | 
|  | typedef signed int              SINT32; | 
 |  |  | 
 |  |  | 
 | #ifndef ZeroMemory | #ifndef ZeroMemory | 
| Line 27  typedef int    SINT32; | Line 28  typedef int    SINT32; | 
 | #define RGB16                   UINT32 | #define RGB16                   UINT32 | 
 | #endif | #endif | 
 |  |  | 
 |  | // for ARM optimize | 
 |  | #define REG8            UINT | 
 |  | #define REG16           UINT | 
 |  | #define REG32           UINT | 
 |  | #define LOW12(a)        ((((UINT)(a)) << 20) >> 20) | 
 |  | #define LOW14(a)        ((((UINT)(a)) << 18) >> 18) | 
 |  | #define LOW15(a)        ((((UINT)(a)) << 17) >> 17) | 
 |  | #define LOW16(a)        ((UINT16)(a)) | 
 |  | #define HIGH16(a)       (((UINT32)(a)) >> 16) | 
 |  |  | 
 |  |  | 
 | #include        "common.h" | #include        "common.h" | 
 | #include        "milstr.h" | #include        "milstr.h" | 
| Line 38  typedef int    SINT32; | Line 49  typedef int    SINT32; | 
 |  |  | 
 | #define GETTICK()       GetTickCount() | #define GETTICK()       GetTickCount() | 
 | #define SPRINTF         sprintf | #define SPRINTF         sprintf | 
 |  | #define __ASSERT(s) | 
 |  |  | 
 | #if defined(WIN32_PLATFORM_PSPC) | #if defined(WIN32_PLATFORM_PSPC) | 
 | #define MENU_TASKMINIMIZE | #define MENU_TASKMINIMIZE | 
 |  | #define SUPPORT_SOFTKBD | 
 | #endif | #endif | 
 |  |  | 
 | #define VERMOUTH_LIB | #define VERMOUTH_LIB | 
| Line 55  typedef int    SINT32; | Line 68  typedef int    SINT32; | 
 |  |  | 
 | #define SCREEN_BPP              16 | #define SCREEN_BPP              16 | 
 |  |  | 
 |  | #if defined(ARM) | 
 |  | #define OPNGENARM | 
 |  | #endif | 
 |  |  |