1
2
3
4
5
6
7
8
9
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#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