📄 errors.h
字号:
/************************************************************************
*
* Module name : ERRORS.H
*
* Module description :
* This header file contains RTMK system error code.
*
* Project : RTMK
*
* Target platform : DOS
*
* Compiler & Library : BC++ 3.1
*
* Author : Richard Shen
*
* Creation date : 16 August, 1995
*
************************************************************************/
#ifndef ERRORS_H
#define ERRORS_H
#define SUCCESSFUL 0 /* No error */
#define ERR_MAX_TASKS -1 /* Too many tasks */
#define ERR_STACK -2 /* Stack allocation error */
#define ERR_TASK_ID -3 /* Invalid task ID */
#define ERR_BRKDET -4 /* Ctrl-Break detected */
#endif /* ERRORS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -