⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 display.h

📁 神龙解压卡Linux下的完整开发包,绝对是超值超值超值
💻 H
字号:
#ifndef DISPLAY_H#define DISPLAY_H/**   This file implements a trivial way to update the content of a VT100 console.   There are 5 areas in the display:   --------------------------------------------------------------   | Message                   - State - Time - Title - Chapter |   --------------------------------------------------------------   Each area is updated by a different function. */RM_EXTERN_C_BLOCKSTARTvoid display_init (void);void display_disable (void);void display_message (const char *str);void display_play_state (const char *str);void display_time (const char *str);void display_title (const char *str);void display_chapter (const char *str);void display_domain (const char *str);RM_EXTERN_C_BLOCKEND#endif //DISPLAY_H

⌨️ 快捷键说明

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