123456789101112131415161718192021222324252627282930313233 |
- #ifndef _FF_INTEGER
- #define _FF_INTEGER
- #ifdef _WIN32
- #include <windows.h>
- #include <tchar.h>
- #else
- typedef unsigned char BYTE;
- typedef short SHORT;
- typedef unsigned short WORD;
- typedef unsigned short WCHAR;
- typedef int INT;
- typedef unsigned int UINT;
- typedef long LONG;
- typedef unsigned long DWORD;
- #endif
- #endif
|