?? constants.h
字號:
#ifndef _constants_h_#define _constants_h_#ifndef MAX_PATH#define MAX_PATH 256#endif#ifdef WIN32#ifdef QSTE_EXPORTS#define _QSTE_DLL_ __declspec(dllexport)#else#define _QSTE_DLL_ __declspec(dllimport)#endif#else#define _QSTE_DLL_#endif#define ELEMENTS(a) (sizeof(a) / sizeof(a[0]))/// Codes representing the effect a line has on indentation.enum IndentationStatus { isNone, // no effect on indentation isBlockStart, // indentation block begin such as "{" or VB "function" isBlockEnd, // indentation end indicator such as "}" or VB "end" isKeyWordStart // Keywords that cause indentation};#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -