| version 1.2, 2004/08/08 14:00:56 | version 1.6, 2005/02/04 06:42:12 | 
| Line 55  typedef signed __int64  SINT64; | Line 55  typedef signed __int64  SINT64; | 
 |  |  | 
 | #define STRCALL         __stdcall | #define STRCALL         __stdcall | 
 |  |  | 
 |  | // for RISC test | 
 |  | #define REG8            UINT | 
 |  | #define REG16           UINT | 
 |  | #define LOW12(a)        (((UINT32)((a) << 20)) >> 20) | 
 |  | #define LOW14(a)        (((UINT32)((a) << 18)) >> 18) | 
 |  | #define LOW15(a)        (((UINT32)((a) << 17)) >> 17) | 
 |  | #define LOW16(a)        ((UINT16)(a)) | 
 |  | #define HIGH16(a)       (((UINT32)(a)) >> 16) | 
 |  |  | 
 | #define BRESULT                         UINT8 | #define BRESULT                         UINT8 | 
 | #define OEMCHAR                         TCHAR | #define OEMCHAR                         TCHAR | 
 | #define OEMTEXT(string)         _T(string) | #define OEMTEXT(string)         _T(string) | 
 |  | #define OEMSPRINTF                      wsprintf | 
 |  | #define OEMSTRLEN                       lstrlen | 
 |  |  | 
 | #include        "common.h" | #include        "common.h" | 
 | #include        "milstr.h" | #include        "milstr.h" | 
| Line 67  typedef signed __int64  SINT64; | Line 78  typedef signed __int64  SINT64; | 
 |  |  | 
 |  |  | 
 | #define GETTICK()                       GetTickCount() | #define GETTICK()                       GetTickCount() | 
 |  | #define __ASSERT(s) | 
 |  | #if defined(UNICODE) | 
 |  | #define SPRINTF                         sprintf | 
 |  | #define STRLEN                          strlen | 
 |  | #else | 
 | #define SPRINTF                         wsprintf | #define SPRINTF                         wsprintf | 
 | #define STRLEN                          lstrlen | #define STRLEN                          lstrlen | 
| #define __ASSERT(s) | #endif | 
 |  |  | 
 | #define LABEL                           __declspec(naked) | #define LABEL                           __declspec(naked) | 
 | #define RELEASE(x)                      if (x) {(x)->Release(); (x) = NULL;} | #define RELEASE(x)                      if (x) {(x)->Release(); (x) = NULL;} | 
| Line 94  typedef signed __int64  SINT64; | Line 110  typedef signed __int64  SINT64; | 
 | #define SUPPORT_16BPP | #define SUPPORT_16BPP | 
 | #define SUPPORT_24BPP | #define SUPPORT_24BPP | 
 | #define SUPPORT_32BPP | #define SUPPORT_32BPP | 
| #define SUPPORT_NORMALDISP | #define MEMOPTIMIZE                     1 | 
 |  |  | 
 |  | // #define      SUPPORT_OPM | 
 | #define SUPPORT_X1F | #define SUPPORT_X1F | 
 |  |  | 
| #define SOUNDRESERVE    20 | #define SOUNDRESERVE            20 | 
 |  |  |