summaryrefslogtreecommitdiff
path: root/src/factqpsr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/factqpsr.h')
-rw-r--r--src/factqpsr.h32
1 files changed, 20 insertions, 12 deletions
diff --git a/src/factqpsr.h b/src/factqpsr.h
index 4d977de..a7d770c 100644
--- a/src/factqpsr.h
+++ b/src/factqpsr.h
@@ -1,7 +1,7 @@
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
- /* CLIPS Version 6.23 01/31/05 */
+ /* CLIPS Version 6.30 08/16/14 */
/* */
/* */
/*******************************************************/
@@ -10,14 +10,28 @@
/* Purpose: */
/* */
/* Principal Programmer(s): */
-/* Brian L. Donnell */
+/* Brian L. Dantes */
/* */
/* Contributing Programmer(s): */
/* Gary D. Riley */
/* */
/* Revision History: */
+/* */
/* 6.23: Added fact-set queries. */
/* */
+/* 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: Fixed memory leaks when error occurred. */
+/* */
+/* Changed integer type/precision. */
+/* */
+/* Added const qualifiers to remove C++ */
+/* deprecation warnings. */
+/* */
/*************************************************************/
#ifndef _H_factqpsr
@@ -39,15 +53,9 @@
#define LOCALE extern
#endif
-LOCALE EXPRESSION *FactParseQueryNoAction(void *,EXPRESSION *,char *);
-LOCALE EXPRESSION *FactParseQueryAction(void *,EXPRESSION *,char *);
-
-#ifndef _FACTQPSR_SOURCE_
-#endif
-
-#endif
-
-#endif
-
+ LOCALE EXPRESSION *FactParseQueryNoAction(void *,EXPRESSION *,const char *);
+ LOCALE EXPRESSION *FactParseQueryAction(void *,EXPRESSION *,const char *);
+#endif /* FACT_SET_QUERIES && (! RUN_TIME) */
+#endif /* _H_factqpsr */