📄 erd.c
字号:
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Corporation 2004 */
/* All Rights Reserved. */
/* */
/* THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS */
/* THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS */
/* SUBJECT TO LICENSE TERMS. */
/* */
/*************************************************************************/
/*************************************************************************/
/* */
/* FILE NAME VERSION */
/* */
/* erd.c Nucleus PLUS 1.15 */
/* */
/* COMPONENT */
/* */
/* ER - Error Management */
/* */
/* DESCRIPTION */
/* */
/* This file contains global data structures for use within the */
/* Error Management component. */
/* */
/* DATA STRUCTURES */
/* */
/* ERD_Error_Code Contains the system error */
/* code */
/* ERD_Error_String Contains the ASCII system */
/* error string */
/* */
/* FUNCTIONS */
/* */
/* None */
/* */
/* DEPENDENCIES */
/* */
/* nucleus.h System definitions */
/* */
/*************************************************************************/
#define NU_SOURCE_FILE
#include "plus/nucleus.h" /* System definitions */
/* ERD_Error_Code contains the system error code detected by the system. */
INT ERD_Error_Code;
#ifdef NU_DEBUG
/* ERD_Assert_Count contains the number of detected failed assertions. */
UNSIGNED ERD_Assert_Count;
#endif
#ifdef NU_ERROR_STRING
/* ERD_Error_String is an area for building an ASCII string representation of
the system error. */
CHAR ERD_Error_String[80];
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -