comparison src/nucleus/in_defs.h @ 0:4e78acac3d88

src/{condat,cs,gpf,nucleus}: import from Selenite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:23:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4e78acac3d88
1 /*************************************************************************/
2 /* */
3 /* Copyright Mentor Graphics Corporation 2002 */
4 /* All Rights Reserved. */
5 /* */
6 /* THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS */
7 /* THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS */
8 /* SUBJECT TO LICENSE TERMS. */
9 /* */
10 /*************************************************************************/
11
12 /*************************************************************************/
13 /* */
14 /* FILE NAME VERSION */
15 /* */
16 /* in_defs.h Nucleus PLUS 1.14 */
17 /* */
18 /* COMPONENT */
19 /* */
20 /* IN - Initialization */
21 /* */
22 /* DESCRIPTION */
23 /* */
24 /* This file contains data structure definitions and constants for */
25 /* the Initialization component. */
26 /* */
27 /* DATA STRUCTURES */
28 /* */
29 /* None */
30 /* */
31 /* FUNCTIONS */
32 /* */
33 /* None */
34 /* */
35 /* DEPENDENCIES */
36 /* */
37 /* None */
38 /* */
39 /* HISTORY */
40 /* */
41 /* DATE REMARKS */
42 /* */
43 /* 03-20-1998 Created initial version 1.3 */
44 /* 03-24-1998 Released version 1.3 */
45 /* 03-26-1999 Released 1.11m (new release */
46 /* numbering scheme) */
47 /* 04-17-2002 Released version 1.13m */
48 /* 11-07-2002 Released version 1.14 */
49 /*************************************************************************/
50
51 /* Check to see if the file has been included already. */
52
53 #ifndef IN_DEFS
54 #define IN_DEFS
55
56 /* Define constants local to this component. */
57
58 #define INC_START_INITIALIZE 1
59 #define INC_END_INITIALIZE 2
60
61
62 #endif /* IN_DEFS */
63
64
65
66
67