Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / osf / uil / UilDef.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* 
24  *  @OSF_COPYRIGHT@
25  *  COPYRIGHT NOTICE
26  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
27  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
28  *  the full copyright text.
29 */ 
30 /* 
31  * HISTORY
32 */ 
33 /*   $XConsortium: UilDef.h /main/13 1995/07/14 09:33:37 drk $ */
34
35 /*
36 *  (c) Copyright 1989, 1990, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
37
38 /*
39 **++
40 **  FACILITY:
41 **
42 **      User Interface Language Compiler (UIL)
43 **
44 **  ABSTRACT:
45 **
46 **      This include file defines the set of definitions used by the public
47 **      access routines Uil and UilDumpSymbolTable.
48 **
49 **--
50 **/
51
52 #ifndef UilDef_h
53 #define UilDef_h
54
55 #if    !defined(__STDC__) && !defined(__cplusplus) && !defined(c_plusplus) \
56     && !defined(FUNCPROTO) && !defined(XTFUNCPROTO) && !defined(XMFUNCPROTO)
57 #define _NO_PROTO
58 #endif /* __STDC__ */
59
60
61 /*
62 **
63 **  INCLUDE FILES
64 **
65 **/
66
67 /*
68 ** Includes needed by other include files.
69 */
70 #include <X11/Intrinsic.h>      
71
72 /*
73 **
74 ** Common includes needed by public functions.
75 **
76 */
77 #include <uil/Uil.h>
78 #include <uil/UilDBDef.h>       /* This has to be loaded first. */
79 #include <uil/UilSymGl.h>
80 #include <uil/UilSymDef.h>
81
82 /*
83 ** Function declarations not defined elsewhere
84 */
85 #define _ARGUMENTS(arglist) arglist
86
87 #if defined(__cplusplus) || defined(c_plusplus)
88 extern "C" {
89 #endif
90
91 /* uilmain.c */
92 extern Uil_status_type Uil _ARGUMENTS((Uil_command_type
93 *comand_desc,Uil_compile_desc_type *compile_desc,Uil_continue_type
94 (*message_cb)(), char *message_data, Uil_continue_type (*status_cb)(),
95 char *status_data));
96
97 /* uilsymstor.c */
98 extern void UilDumpSymbolTable  _ARGUMENTS(( sym_entry_type *node_entry ));
99
100 #if defined(__cplusplus) || defined(c_plusplus)
101 }
102 #endif
103
104 #endif /* UilDef_h */
105 /* DON'T ADD STUFF AFTER THIS #endif */