console.h
来自「音频编码」· C头文件 代码 · 共 38 行
H
38 行
/* * frontend/console.h * * This * * */ #ifndef LAME_CONSOLE_H#define LAME_CONSOLE_H#if defined(_WIN32) && !defined(__CYGWIN__)# include <windows.h>#endiftypedef struct { unsigned long ClassID; unsigned long ClassProt; FILE* Console_fp; /* filepointer to stream reporting information */ FILE* Error_fp; /* filepointer to stream fatal error reporting information */ FILE* Report_fp; /* filepointer to stream reports (normally a text file or /dev/null) */ char* Console_buff;#if defined(_WIN32) && !defined(__CYGWIN__) HANDLE Console_Handle;#endif int disp_width; int disp_height; char str_up [10]; char str_clreoln [10]; char str_emph [10]; char str_norm [10];} Console_IO_t;#endif /* LAME_CONSOLE_H *//* end of console.h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?