📄 appl.h
字号:
/***************************************************************************
*
* Copyright (c) 1993 READY SYSTEMS CORPORATION.
*
* All rights reserved. READY SYSTEMS' source code is an unpublished
* work and the use of a copyright notice does not imply otherwise.
* This source code contains confidential, trade secret material of
* READY SYSTEMS. Any attempt or participation in deciphering, decoding,
* reverse engineering or in any way altering the source code is
* strictly prohibited, unless the prior written consent of
* READY SYSTEMS is obtained.
*
*
* Module Name: appl.h
*
* Identification: @(#) 1.4 appl.h
*
* Date: 1/6/94 16:27:42
*
****************************************************************************
*/
/*
RCS header identifier - $Id: appl.h,v 1.3 1993/10/05 18:08:06 robert Exp $
*/
/*
* Copyrighted as an unpublished work.
* (c) Copyright 1991-1993 Lachman Technology, Incorporated
* All rights reserved.
*
* RESTRICTED RIGHTS
*
* These programs are supplied under a license. They may be used,
* disclosed, and/or copied only as permitted under such license
* agreement. Any copy must contain the above copyright notice and
* this restricted rights notice. Use, copying, and/or disclosure
* of the programs is strictly prohibited unless otherwise provided
* in the license agreement.
*/
#ifndef _H_APPL
#define _H_APPL
#ifdef __cplusplus
extern "C" {
#endif
#define MAXNAPPL 32
struct applic_desc {
char *ap_name;
long (*ap_entry)();
int ap_stksize;
char *ap_databeg;
char *ap_dataend;
};
#ifdef KERNEL
extern struct applic_desc Applic_tbl[];
extern int nappl; /* size of application table */
#endif
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -