cs_defs.h
来自「MMI层OBJ不能完全编译」· C头文件 代码 · 共 64 行
H
64 行
/*************************************************************************/
/* */
/* 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 */
/* */
/* cs_defs.h Nucleus PLUS 1.15 */
/* */
/* COMPONENT */
/* */
/* CS - Common Services */
/* */
/* DESCRIPTION */
/* */
/* This file contains data structure definitions used in the common */
/* service linked list routines. */
/* */
/* DATA STRUCTURES */
/* */
/* CS_NODE Link node structure */
/* */
/* DEPENDENCIES */
/* */
/* nucleus.h Nucleus PLUS constants */
/* */
/*************************************************************************/
#include "plus/nucleus.h" /* Include Nucleus constants */
/* Check to see if the file has been included already. */
#ifndef CS_DEFS
#define CS_DEFS
/* Define a common node data structure that can be included inside of
other system data structures. */
typedef struct CS_NODE_STRUCT
{
struct CS_NODE_STRUCT *cs_previous;
struct CS_NODE_STRUCT *cs_next;
DATA_ELEMENT cs_priority;
#if PAD_1
DATA_ELEMENT cs_padding[PAD_1];
#endif
} CS_NODE;
#endif /* CS_DEFS */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?