📄 prpccfg.h
字号:
/***********************************************************************//* *//* MODULE: prpccfg.h 1.3 *//* DATE: 17:58:31 - 97/12/05 *//* PURPOSE: Configuration table structure templates *//* *//*---------------------------------------------------------------------*//* *//* Copyright 1993, Integrated Systems, Inc. *//* ALL RIGHTS RESERVED *//* *//* Permission is hereby granted to licensees of Integrated Systems, *//* Inc. products to use or abstract this computer program for the *//* sole purpose of implementing a product based on Integrated *//* Systems, Inc. products. No other rights to reproduce, use, *//* or disseminate this computer program, whether in part or in *//* whole, are granted. *//* *//* Integrated Systems, Inc. makes no representation or warranties *//* with respect to the performance of this computer program, and *//* specifically disclaims any responsibility for any damages, *//* special or consequential, connected with the use of this program. *//* *//*---------------------------------------------------------------------*//* *//* This file contains templates for pRPC+ configuration table. *//* *//***********************************************************************/#if defined(__cplusplus)extern "C" {#endif/*---------------------------------------------------------------------*//* Don't allow this file to be included more than once. *//*---------------------------------------------------------------------*/#ifndef _PRPCCFG_H#define _PRPCCFG_H/*=====================================================================*//* pRPC+ Configuration table *//*=====================================================================*/typedef struct nr_cfg { void (*nr_code)(); /* pRPC+ code address */ char *nr_data; /* Address of pRPC+ data area */ long nr_datasize; /* Length of pRPC+ data area */ long reserved[10]; /* Reserved entries of pRPC+ */ } pRPC_CT;#endif#if defined(__cplusplus)}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -