|
|
| version 1.2, 2003/11/21 06:51:16 | version 1.10, 2003/12/21 16:05:26 |
|---|---|
| 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 |
| #define ZeroMemory(a, b) memset((a), 0 , (b)) | #define ZeroMemory(a, b) memset((a), 0 , (b)) |
| Line 27 typedef int SINT32; | Line 27 typedef int SINT32; |
| #define RGB16 UINT32 | #define RGB16 UINT32 |
| #endif | #endif |
| // for ARM optimize | |
| #define REG8 UINT | |
| #define REG16 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 47 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) && defined(SIZE_QVGA) |
| #define MENU_TASKMINIMIZE | #define MENU_TASKMINIMIZE |
| #define SUPPORT_SOFTKBD | |
| #endif | #endif |
| #define VERMOUTH_LIB | #define VERMOUTH_LIB |
| Line 55 typedef int SINT32; | Line 66 typedef int SINT32; |
| #define SCREEN_BPP 16 | #define SCREEN_BPP 16 |
| #if defined(ARM) | |
| #define OPNGENARM | |
| #endif | |
| #define CPUSTRUC_MEMWAIT | |