summaryrefslogtreecommitdiff
path: root/src/inspsr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspsr.h')
-rw-r--r--src/inspsr.h28
1 files changed, 19 insertions, 9 deletions
diff --git a/src/inspsr.h b/src/inspsr.h
index c02441a..a903cdb 100644
--- a/src/inspsr.h
+++ b/src/inspsr.h
@@ -1,7 +1,7 @@
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
- /* CLIPS Version 6.20 01/31/02 */
+ /* CLIPS Version 6.30 08/16/14 */
/* */
/* */
/*******************************************************/
@@ -10,12 +10,25 @@
/* Purpose: */
/* */
/* Principal Programmer(s): */
-/* Brian L. Donnell */
+/* Brian L. Dantes */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
+/* 6.23: Correction for FalseSymbol/TrueSymbol. DR0859 */
+/* */
+/* Changed name of variable exp to theExp */
+/* because of Unix compiler warnings of shadowed */
+/* definitions. */
+/* */
+/* 6.24: Renamed BOOLEAN macro type to intBool. */
+/* */
+/* 6.30: Added const qualifiers to remove C++ */
+/* deprecation warnings. */
+/* */
+/* Fixed ParseSlotOverrides memory release issue. */
+/* */
/*************************************************************/
#ifndef _H_inspsr
@@ -36,16 +49,13 @@
#endif
#if ! RUN_TIME
-LOCALE EXPRESSION *ParseInitializeInstance(void *,EXPRESSION *,char *);
-LOCALE EXPRESSION *ParseSlotOverrides(void *,char *,int *);
+ LOCALE EXPRESSION *ParseInitializeInstance(void *,EXPRESSION *,const char *);
+ LOCALE EXPRESSION *ParseSlotOverrides(void *,const char *,int *);
#endif
-LOCALE EXPRESSION *ParseSimpleInstance(void *,EXPRESSION *,char *);
-
-#ifndef _INSCOM_SOURCE_
-#endif
+ LOCALE EXPRESSION *ParseSimpleInstance(void *,EXPRESSION *,const char *);
-#endif
+#endif /* _H_inspsr */