1    /*******************************************************/
2    /*      "C" Language Integrated Production System      */
3    /*                                                     */
4    /*               CLIPS Version 6.30  08/16/14          */
5    /*                                                     */
6    /*                                                     */
7    /*******************************************************/
8 
9 /*************************************************************/
10 /* Purpose: Definstances Construct Compiler Code             */
11 /*                                                           */
12 /* Principal Programmer(s):                                  */
13 /*      Brian L. Dantes                                      */
14 /*                                                           */
15 /* Contributing Programmer(s):                               */
16 /*                                                           */
17 /* Revision History:                                         */
18 /*                                                           */
19 /*      6.30: Added support for path name argument to        */
20 /*            constructs-to-c.                               */
21 /*                                                           */
22 /*************************************************************/
23 
24 #ifndef _H_dfinscmp
25 #define _H_dfinscmp
26 
27 #if DEFINSTANCES_CONSTRUCT && CONSTRUCT_COMPILER && (! RUN_TIME)
28 
29 #ifndef _STDIO_INCLUDED_
30 #define _STDIO_INCLUDED_
31 #include <stdio.h>
32 #endif
33 
34 #ifdef LOCALE
35 #undef LOCALE
36 #endif
37 
38 #ifdef _DFINSCMP_SOURCE_
39 #define LOCALE
40 #else
41 #define LOCALE extern
42 #endif
43 
44    LOCALE void                           SetupDefinstancesCompiler(void *);
45    LOCALE void                           DefinstancesCModuleReference(void *,FILE *,int,int,int);
46 
47 #endif /* DEFINSTANCES_CONSTRUCT && CONSTRUCT_COMPILER && (! RUN_TIME) */
48 
49 #endif /* _H_dfinscmp */
50 
51 
52