status.h
来自「dtelent是开源的开发项目」· C头文件 代码 · 共 22 行
H
22 行
/* status.h
* Copyright (c) 1997 David Cole
*
* Control and manage the status bar
*/
#ifndef __status_h
#define __status_h
/* Return the handle of the status bar */
HWND statusGetWnd(void);
/* Format and display a status message */
void statusSetMsg(char* fmt, ...);
/* Tell the status bar to redisplay the terminal type */
void statusSetTerm(void);
void statusRedraw(void);
/* Register the status bar window class */
BOOL statusInitClass(HINSTANCE instance);
/* Create the status bar window */
BOOL statusCreateWnd(HINSTANCE instance, HWND parent);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?