| version 1.1, 2004/08/19 11:09:21 | version 1.3, 2004/08/20 09:51:53 | 
| Line 4 | Line 4 | 
 | #include        <stddef.h> | #include        <stddef.h> | 
 |  |  | 
 | #define BYTESEX_LITTLE | #define BYTESEX_LITTLE | 
 |  | #if !defined(UNICODE) | 
 |  | #define OSLANG_SJIS | 
 |  | #else | 
 | #define OSLANG_UCS2 | #define OSLANG_UCS2 | 
 |  | #endif | 
 | #define OSLINEBREAK_CRLF | #define OSLINEBREAK_CRLF | 
 |  |  | 
 | typedef signed int                      SINT; | typedef signed int                      SINT; | 
| Line 28  typedef unsigned int  UINT32; | Line 32  typedef unsigned int  UINT32; | 
 | // for RISC test | // for RISC test | 
 | #define REG8            UINT | #define REG8            UINT | 
 | #define REG16           UINT | #define REG16           UINT | 
| #define LOW12(a)                                (((UINT32)((a) << 20)) >> 20) | #define LOW12(a)        (((UINT32)((a) << 20)) >> 20) | 
| #define LOW14(a)                                (((UINT32)((a) << 18)) >> 18) | #define LOW14(a)        (((UINT32)((a) << 18)) >> 18) | 
| #define LOW15(a)                                (((UINT32)((a) << 17)) >> 17) | #define LOW15(a)        (((UINT32)((a) << 17)) >> 17) | 
| #define LOW16(a)                                ((UINT16)(a)) | #define LOW16(a)        ((UINT16)(a)) | 
| #define HIGH16(a)                               (((UINT32)(a)) >> 16) | #define HIGH16(a)       (((UINT32)(a)) >> 16) | 
 |  |  | 
 |  |  | 
 | #define BRESULT                         UINT | #define BRESULT                         UINT | 
| Line 54  typedef unsigned int  UINT32; | Line 58  typedef unsigned int  UINT32; | 
 |  |  | 
 | #define GETTICK()                       GetTickCount() | #define GETTICK()                       GetTickCount() | 
 | #define __ASSERT(s) | #define __ASSERT(s) | 
 |  | #if !defined(UNICODE) | 
 |  | #define SPRINTF                         wsprintf | 
 |  | #define STRLEN                          lstrlen | 
 |  | #else | 
 | #define SPRINTF                         sprintf | #define SPRINTF                         sprintf | 
 | #define STRLEN                          strlen | #define STRLEN                          strlen | 
 |  | #endif | 
 |  |  | 
 | #define SOUND_CRITICAL | #define SOUND_CRITICAL | 
 |  |  | 
 |  | #if !defined(UNICODE) | 
 |  | #define SUPPORT_SJIS | 
 |  | #else | 
 | #define SUPPORT_ANK | #define SUPPORT_ANK | 
 |  | #endif | 
 |  |  | 
 | #define SUPPORT_16BPP | #define SUPPORT_16BPP | 
 | #define MEMOPTIMIZE                     2 | #define MEMOPTIMIZE                     2 |