void ListDefrulesCommand( UDFContext *context, CLIPSValue *returnValue) { void *theEnv = UDFContextEnvironment(context); ListConstructCommand(context,"list-defrules",DefruleData(theEnv)->DefruleConstruct); }
globle void ListDeftemplatesCommand( void *theEnv) { ListConstructCommand(theEnv,(char*)"list-deftemplates",DeftemplateData(theEnv)->DeftemplateConstruct); }
globle void ListDefrulesCommand( void *theEnv) { ListConstructCommand(theEnv,"list-defrules",DefruleData(theEnv)->DefruleConstruct); }
/*************************************************** NAME : ListDeffunctionsCommand DESCRIPTION : Displays all deffunction names INPUTS : None RETURNS : Nothing useful SIDE EFFECTS : Deffunction name sprinted NOTES : H/L Interface ***************************************************/ globle void ListDeffunctionsCommand( void *theEnv) { ListConstructCommand(theEnv,(char*)"list-deffunctions",DeffunctionData(theEnv)->DeffunctionConstruct); }
/*************************************************** NAME : ListDefclassesCommand DESCRIPTION : Displays all defclass names INPUTS : None RETURNS : Nothing useful SIDE EFFECTS : Defclass names printed NOTES : H/L Interface ***************************************************/ globle void ListDefclassesCommand( void *theEnv) { ListConstructCommand(theEnv,"list-defclasses",DefclassData(theEnv)->DefclassConstruct); }
globle void ListDefglobalsCommand() { ListConstructCommand("list-defglobals",DefglobalConstruct); }
globle void ListDefrulesCommand( void *theEnv, EXEC_STATUS) { ListConstructCommand(theEnv,execStatus,"list-defrules",DefruleData(theEnv,execStatus)->DefruleConstruct); }
/*************************************************** NAME : ListDefinstancesCommand DESCRIPTION : Displays all definstances names INPUTS : None RETURNS : Nothing useful SIDE EFFECTS : Definstances name sprinted NOTES : H/L Interface ***************************************************/ globle void ListDefinstancesCommand( void *theEnv) { ListConstructCommand(theEnv,(char*)"list-definstances",DefinstancesData(theEnv)->DefinstancesConstruct); }
globle void ListDefglobalsCommand( void *theEnv) { ListConstructCommand(theEnv,"list-defglobals",DefglobalData(theEnv)->DefglobalConstruct); }
globle void ListDeftemplatesCommand() { ListConstructCommand("list-deftemplates",DeftemplateConstruct); }
/*************************************************** NAME : ListDeffunctionsCommand DESCRIPTION : Displays all deffunction names INPUTS : None RETURNS : Nothing useful SIDE EFFECTS : Deffunction name sprinted NOTES : H/L Interface ***************************************************/ globle void ListDeffunctionsCommand( void *theEnv, EXEC_STATUS) { ListConstructCommand(theEnv,execStatus,"list-deffunctions",DeffunctionData(theEnv,execStatus)->DeffunctionConstruct); }
globle void ListDefrulesCommand() { ListConstructCommand("list-defrules",DefruleConstruct); }
globle void ListDeffactsCommand( void *theEnv) { ListConstructCommand(theEnv,"list-deffacts",DeffactsData(theEnv)->DeffactsConstruct); }