Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:15:55

0001 /* 
0002  * Motif
0003  *
0004  * Copyright (c) 1987-2012, The Open Group. All rights reserved.
0005  *
0006  * These libraries and programs are free software; you can
0007  * redistribute them and/or modify them under the terms of the GNU
0008  * Lesser General Public License as published by the Free Software
0009  * Foundation; either version 2 of the License, or (at your option)
0010  * any later version.
0011  *
0012  * These libraries and programs are distributed in the hope that
0013  * they will be useful, but WITHOUT ANY WARRANTY; without even the
0014  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
0015  * PURPOSE. See the GNU Lesser General Public License for more
0016  * details.
0017  *
0018  * You should have received a copy of the GNU Lesser General Public
0019  * License along with these librararies and programs; if not, write
0020  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
0021  * Floor, Boston, MA 02110-1301 USA
0022 */ 
0023 
0024 /*
0025 **++
0026 **  FACILITY:
0027 **
0028 **      User Interface Language Compiler (UIL)
0029 **
0030 **  ABSTRACT:
0031 **
0032 **      This include file defines the set of definitions used by the public
0033 **  access routines Uil and UilDumpSymbolTable.
0034 **
0035 **--
0036 **/
0037 
0038 #ifndef UilDef_h
0039 #define UilDef_h
0040 
0041 #if    !defined(__STDC__) && !defined(__cplusplus) && !defined(c_plusplus) \
0042     && !defined(FUNCPROTO) && !defined(XTFUNCPROTO) && !defined(XMFUNCPROTO)
0043 #define _NO_PROTO
0044 #endif /* __STDC__ */
0045 
0046 
0047 /*
0048 **
0049 **  INCLUDE FILES
0050 **
0051 **/
0052 
0053 /*
0054 ** Includes needed by other include files.
0055 */
0056 #include <X11/Intrinsic.h>  
0057 
0058 /*
0059 **
0060 ** Common includes needed by public functions.
0061 **
0062 */
0063 #include <uil/Uil.h>
0064 #include <uil/UilDBDef.h>   /* This has to be loaded first. */
0065 #include <uil/UilSymGl.h>
0066 #include <uil/UilSymDef.h>
0067 
0068 /*
0069 ** Function declarations not defined elsewhere
0070 */
0071 #define _ARGUMENTS(arglist) arglist
0072 
0073 #if defined(__cplusplus) || defined(c_plusplus)
0074 extern "C" {
0075 #endif
0076 
0077 /* uilmain.c */
0078 extern Uil_status_type Uil _ARGUMENTS((Uil_command_type
0079 *comand_desc,Uil_compile_desc_type *compile_desc,Uil_continue_type
0080 (*message_cb)(), char *message_data, Uil_continue_type (*status_cb)(),
0081 char *status_data));
0082 
0083 /* uilsymstor.c */
0084 extern void UilDumpSymbolTable  _ARGUMENTS(( sym_entry_type *node_entry ));
0085 
0086 #if defined(__cplusplus) || defined(c_plusplus)
0087 }
0088 #endif
0089 
0090 #endif /* UilDef_h */
0091 /* DON'T ADD STUFF AFTER THIS #endif */