helpex.h

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 37 行

H
37
字号
/* file menu items */

#define     IDM_NEW      100
#define     IDM_OPEN     101
#define     IDM_SAVE     102
#define     IDM_SAVEAS   103
#define     IDM_PRINT    104
#define     IDM_EXIT     105

/* edit menu items */

#define     IDM_UNDO     200
#define     IDM_CUT      201
#define     IDM_COPY     202
#define     IDM_PASTE    203
#define     IDM_CLEAR    204

/* define help items */

#define     IDM_ABOUT          300
#define     IDM_HELP_INDEX     301
#define     IDM_HELP_KEYBOARD  302
#define     IDM_HELP_HELP      303

#define EXE_NAME_MAX_SIZE  128

int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
BOOL InitApplication(HINSTANCE);
BOOL InitInstance(HINSTANCE, int);
#ifdef __WINDOWS_386__
#define _EXPORT
#else
#define _EXPORT __export
#endif
long _EXPORT FAR PASCAL MainWndProc(HWND, unsigned, WORD, LONG);
BOOL _EXPORT FAR PASCAL About(HWND, unsigned, WORD, LONG);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?