📄 bastype.h
字号:
#ifndef BASTYPE_H
#define BASTYPE_H
#include "verctrl.h"
#include "string.h"
#include "stdio.h"
#include "stdlib.h"
#include <memory.h>
#undef VOID
#define VOID void
#undef FALSE
#define FALSE 0x00
#undef TRUE
#define TRUE 0x01
typedef char CHAR;
typedef unsigned char UCHAR;
typedef short INT16;
typedef unsigned short UINT16;
typedef long INT32;
typedef unsigned long UINT32;
typedef int BOOL;
typedef int INT;
typedef unsigned int UINT;
typedef float FLOAT;
typedef unsigned char UINT8;
typedef char INT8;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -