typedef unsigned long DWORD;
typedef int BOOL;
typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef float FLOAT;
typedef void far *LPVOID;
typedef int INT;
typedef unsigned int UINT;变量的“匈牙利表示法”:
- lp为前缀:指针类型;
- b为前缀:BOOL类型;
- sz:代表string以0结尾的字符串;
- LPCSTR:const char*的宏定义;