📄 global.h
字号:
#pragma once
typedef unsigned char BYTE; //Byte (8 bits).
typedef unsigned short WORD; //16-bit unsigned integer
typedef unsigned long DWORD; //32-bit unsigned integer.
typedef short SHORT; //Short integer (16 bits).
typedef unsigned short USHORT;
typedef int INT;
typedef signed int INT32;
typedef signed __int64 INT64;
typedef unsigned int UINT;
typedef unsigned int UINT32;
typedef unsigned __int64 UINT64;
typedef long LONG;
typedef unsigned long ULONG;
typedef unsigned int ULONG32;
typedef unsigned __int64 ULONG64;
#undef DEBUG
const UINT32 E_OK=0;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -