📄 console.h
字号:
#ifndef CONSOLE_H
#define CONSOLE_H
void ConsoleSetTextColor(unsigned long Color);
void ConsoleSetBkColor(unsigned long Color);
void ConsoleScrollDown(int nRow);
void ConsoleScrollUp(int nRow);
void ConsoleInit(int BkColor,int TextColor);
void ConsoleOutAsc(unsigned char ch);
void ConsolePrintOK(void);
void ConsolePrintFault(void);
int ConsolePrintf(const char * fmt, ...);
int ConsoleWarning(const char * fmt, ...);
int ConsoleMsg(const char * fmt, ...);
#endif
/* end of Console.h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -