|
|
| version 1.19, 2004/06/21 02:01:33 | version 1.25, 2005/04/01 15:35:50 |
|---|---|
| Line 5 | Line 5 |
| #define BYTESEX_LITTLE | #define BYTESEX_LITTLE |
| #if !defined(UNICODE) | #if !defined(OSLANG_ANK) && !defined(OSLANG_SJIS) && !defined(OSLANG_EUC) && !defined(OSLANG_UTF8) && !defined(OSLANG_UCS2) && !defined(OSLANG_UCS4) |
| #define OSLANG_SJIS | #define OSLANG_SJIS |
| #endif | #endif |
| #define OSLINEBREAK_CRLF | #define OSLINEBREAK_CRLF |
| typedef signed char SINT8; | typedef signed int SINT; |
| typedef unsigned char UINT8; | typedef signed char SINT8; |
| typedef signed short SINT16; | typedef unsigned char UINT8; |
| typedef unsigned short UINT16; | typedef signed short SINT16; |
| typedef signed int SINT32; | typedef unsigned short UINT16; |
| typedef unsigned int UINT32; | typedef signed int SINT32; |
| typedef unsigned int UINT32; | |
| #if !defined(SIZE_VGA) | #if !defined(SIZE_VGA) |
| Line 24 typedef unsigned int UINT32; | Line 25 typedef unsigned int UINT32; |
| #if !defined(SIZE_VGATEST) | #if !defined(SIZE_VGATEST) |
| #define RGB16 UINT32 | #define RGB16 UINT32 |
| #endif | #endif |
| #endif | |
| #if defined(ADDON_SOFTKBD) | |
| #define SUPPORT_SOFTKBD 1 | #define SUPPORT_SOFTKBD 1 |
| #endif | #endif |
| // 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 | |
| #if defined(OSLANG_UCS2) | |
| #define OEMCHAR wchar_t | |
| #define _OEMTEXT(x) L ## x | |
| #define OEMTEXT(string) _OEMTEXT(string) | |
| #if defined(_UNICODE) | |
| #define OEMSPRINTF wsprintf | |
| #define OEMSTRLEN lstrlen | |
| #else | |
| #define OEMSPRINTF swprintf | |
| #define OEMSTRLEN wcslen | |
| #endif | |
| #else | |
| #define OEMCHAR char | |
| #define OEMTEXT(string) string | |
| #if defined(_UNICODE) | |
| #define OEMSPRINTF sprintf | |
| #define OEMSTRLEN strlen | |
| #else | |
| #define OEMSPRINTF wsprintf | |
| #define OEMSTRLEN lstrlen | |
| #endif | |
| #endif | |
| #include "common.h" | #include "common.h" |
| #include "oemtext.h" | |
| #include "milstr.h" | #include "milstr.h" |
| #include "ucscnv.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() GetTickCount() | #define GETTICK() GetTickCount() |
| #if defined(UNICODE) | #define __ASSERT(s) |
| #define SPRINTF sprintf | #if !defined(UNICODE) |
| #define STRLEN strlen | #define SPRINTF wsprintf |
| #define STRLEN lstrlen | |
| #else | #else |
| #define SPRINTF wsprintf | #define SPRINTF sprintf |
| #define STRLEN lstrlen | #define STRLEN strlen |
| #endif | #endif |
| #define __ASSERT(s) | |
| #define VERMOUTH_LIB | #define VERMOUTH_LIB |
| #define SOUND_CRITICAL | #define SOUND_CRITICAL |
| #if defined(OSLANG_SJIS) | |
| #define SUPPORT_SJIS | #define SUPPORT_SJIS |
| #if defined(OSLANG_UTF8) | #elif defined(OSLANG_UTF8) |
| #define SUPPORT_UTF8 | #define SUPPORT_UTF8 |
| #else | |
| #define SUPPORT_ANK | |
| #endif | #endif |
| #define SUPPORT_16BPP | #define SUPPORT_16BPP |
| #define MEMOPTIMIZE 2 | #define MEMOPTIMIZE 2 |
| #define SOUNDRESERVE 100 | #define SOUNDRESERVE 100 |
| #define SCREEN_BPP 16 | #define SCREEN_BPP 16 |
| #define SUPPORT_HOSTDRV | #define SUPPORT_HOSTDRV |
| #define SUPPORT_CRT15KHZ | #define SUPPORT_CRT15KHZ |