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