1    /*******************************************************/
2    /*      "C" Language Integrated Production System      */
3    /*                                                     */
4    /*             CLIPS Version 6.30  08/16/14            */
5    /*                                                     */
6    /*       DEFGLOBAL CONSTRUCT COMPILER HEADER FILE      */
7    /*******************************************************/
8 
9 /*************************************************************/
10 /* Purpose:                                                  */
11 /*                                                           */
12 /* Principal Programmer(s):                                  */
13 /*      Gary D. Riley                                        */
14 /*                                                           */
15 /* Contributing Programmer(s):                               */
16 /*                                                           */
17 /* Revision History:                                         */
18 /*                                                           */
19 /*      6.30: Removed conditional code for unsupported       */
20 /*            compilers/operating systems (IBM_MCW,          */
21 /*            MAC_MCW, and IBM_TBC).                         */
22 /*                                                           */
23 /*            Added support for path name argument to        */
24 /*            constructs-to-c.                               */
25 /*                                                           */
26 /*            Added const qualifiers to remove C++           */
27 /*            deprecation warnings.                          */
28 /*                                                           */
29 /*************************************************************/
30 
31 #ifndef _H_globlcmp
32 
33 #define _H_globlcmp
34 
35 #ifdef LOCALE
36 #undef LOCALE
37 #endif
38 
39 #ifdef _GLOBLCMP_SOURCE_
40 #define LOCALE
41 #else
42 #define LOCALE extern
43 #endif
44 
45    LOCALE void                           DefglobalCompilerSetup(void *);
46    LOCALE void                           DefglobalCModuleReference(void *,FILE *,int,int,int);
47    LOCALE void                           DefglobalCConstructReference(void *,FILE *,void *,int,int);
48 
49 #endif /* _H_globlcmp */
50 
51