📄 sm.h
字号:
#ifndef SM_H#define SM_H#include "RM_Manager.h"#include "RM_FileScan.h"/* Names of the attribute and relation catalogs */const char *const relName_attrcat = "attrcat";const char *const relName_relcat = "relcat";typedef struct { char attrName[MAXNAME+1]; AttrType attrType; int attrLength;} AttrInfo;typedef struct { char relName[MAXNAME+1]; char attrName[MAXNAME+1]; AttrType attrType; int attrLength; int offset;} DataAttrInfo;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -