select.h
来自「frasr200的win 版本源码(18.21),使用make文件,使用的vc版」· C头文件 代码 · 共 19 行
H
19 行
/* These defines determine the meaning of the fFlags variable. The low byte
* is used for the various types of "boxes" to draw. The high byte is
* available for special commands.
*/
#define SL_BOX 1 /* Draw a solid border around the rectangle */
#define SL_BLOCK 2 /* Draw a solid rectangle */
#define SL_ZOOM 3
#define SL_EXTEND 256 /* Extend the current pattern */
#define SL_TYPE 0x00FF /* Mask out everything but the type flags */
#define SL_SPECIAL 0xFF00 /* Mask out everything but the special flags */
void FAR PASCAL StartSelection(HWND, POINT, LPRECT, int);
void FAR PASCAL UpdateSelection(HWND, POINT, LPRECT, int);
void FAR PASCAL EndSelection(POINT, LPRECT);
void FAR PASCAL ClearSelection(HWND, LPRECT, int);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?