|
|
| version 1.3, 2003/10/18 10:00:29 | version 1.6, 2003/11/03 00:49:55 |
|---|---|
| Line 1 | Line 1 |
| #define _WIN32_IE 0x0200 | |
| #include <windows.h> | #include <windows.h> |
| #include <stdio.h> | #include <stdio.h> |
| #include <stddef.h> | #include <stddef.h> |
| #define BYTESEX_LITTLE | #define BYTESEX_LITTLE |
| #ifndef __GNUC__ | |
| typedef short SINT16; | typedef short SINT16; |
| typedef unsigned short UINT16; | typedef unsigned short UINT16; |
| typedef int SINT32; | typedef int SINT32; |
| typedef unsigned int UINT32; | typedef unsigned int UINT32; |
| #else | |
| #include <stdlib.h> | |
| typedef short SINT16; | |
| typedef unsigned short UINT16; | |
| typedef int SINT32; | |
| #endif | |
| #define LOADINTELDWORD(a) (*((UINT32 *)(a))) | |
| #define LOADINTELWORD(a) (*((UINT16 *)(a))) | |
| #define STOREINTELDWORD(a, b) *(UINT32 *)(a) = (b) | |
| #define STOREINTELWORD(a, b) *(UINT16 *)(a) = (b) | |
| #include "common.h" | #include "common.h" |
| #include "milstr.h" | #include "milstr.h" |
| #include "_memory.h" | #include "_memory.h" |
| Line 42 typedef unsigned int UINT32; | Line 62 typedef unsigned int UINT32; |
| #define SUPPORT_32BPP | #define SUPPORT_32BPP |
| #define SUPPORT_NORMALDISP | #define SUPPORT_NORMALDISP |
| #define SOUNDRESERVE 20 | |