syserr.c
来自「DOS 源代码 系列之 command 源码」· C语言 代码 · 共 26 行
C
26 行
/***
*syserr.c - clone of the system error list that appears in the
* standard library.
*
* Copyright (c) 1987-1990, Microsoft Corporation. All rights reserved.
* Adapted by TerryF for IPG October 1991.
*
*Purpose:
* Defines the System Error List, containing the full messages for
* all errno values set by the library routines.
* Defines sys_errlist.
*
*******************************************************************************/
/* standard lib uses the name sys_errlist */
char *sys_errorlist[] =
{
#include "syserr.msg" /* TerryF -> IPG, localize syserr.msg */
};
/* standard lib uses the name sys_nerr */
int system_nerr = sizeof( sys_errorlist ) / sizeof( sys_errorlist[ 0 ] ) - 1;
/* The above array contains all the errors including unknown error # 37
which is used if msg_num is unknown */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?