00001 /*******************************************************/ 00002 /* "C" Language Integrated Production System */ 00003 /* */ 00004 /* CLIPS Version 6.20 01/31/02 */ 00005 /* */ 00006 /* RULE DELETION MODULE HEADER FILE */ 00007 /*******************************************************/ 00008 00009 /*************************************************************/ 00010 /* Purpose: Provides routines for deleting a rule including */ 00011 /* freeing the defrule data structures and removing the */ 00012 /* appropriate joins from the join network. */ 00013 /* */ 00014 /* Principal Programmer(s): */ 00015 /* Gary D. Riley */ 00016 /* */ 00017 /* Contributing Programmer(s): */ 00018 /* */ 00019 /* Revision History: */ 00020 /* */ 00021 /*************************************************************/ 00022 00023 #ifndef _H_ruledlt 00024 00025 #define _H_ruledlt 00026 00027 #ifdef LOCALE 00028 #undef LOCALE 00029 #endif 00030 00031 #ifdef _RULEDLT_SOURCE_ 00032 #define LOCALE 00033 #else 00034 #define LOCALE extern 00035 #endif 00036 00037 LOCALE void ReturnDefrule(void *,void *); 00038 LOCALE void DestroyDefrule(void *,void *); 00039 00040 #endif 00041 00042 00043 00044 00045 00046
1.5.6