📄 mfm.hic
字号:
#ifndef FM_MEM_HIC#define FM_MEM_HIC/* Insertion or delete of object codes */#define FM_INSERT (1<<0)#define FM_DELETE (1<<1)/* Directory state */#define FM_DIR_EMPTY 0#define FM_DIR_NOT_EMPTY 1/* Selection of a file or and a directory to get addresses */#define FM_OBJ_FILE (1<<0)#define FM_OBJ_DIR (1<<1)/* Selection of type of info to extract of dir file name or ID */#define FM_ID 0#define FM_NAME 1/* Internal buffer sizes */#define MFM_ID_TAB_SIZE 200 /* Size of identifier table ( used to addresses of files ) */#define MFM_SIZE_OF_READ_BUFF 500 /* Size of read buffer ( used only to search files in a directory */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -