bool EnvRemoveResetFunction( void *theEnv, const char *name) { bool found; ConstructData(theEnv)->ListOfResetFunctions = RemoveFunctionFromCallList(theEnv,name,ConstructData(theEnv)->ListOfResetFunctions,&found); return found; }
globle BOOLEAN RemoveClearFunction( char *name) { int found; ListOfClearFunctions = RemoveFunctionFromCallList(name,ListOfClearFunctions,&found); if (found) return(TRUE); return(FALSE); }
globle intBool EnvRemoveClearFunction( void *theEnv, const char *name) { int found; ConstructData(theEnv)->ListOfClearFunctions = RemoveFunctionFromCallList(theEnv,name,ConstructData(theEnv)->ListOfClearFunctions,&found); if (found) return(TRUE); return(FALSE); }
bool EnvRemoveClearFunction( void *theEnv, const char *name) { bool found; ConstructData(theEnv)->ListOfClearFunctions = RemoveFunctionFromCallList(theEnv,name,ConstructData(theEnv)->ListOfClearFunctions,&found); if (found) return(true); return(false); }
globle intBool EnvRemoveRunFunction( void *theEnv, char *name) { int found; EngineData(theEnv)->ListOfRunFunctions = RemoveFunctionFromCallList(theEnv,name,EngineData(theEnv)->ListOfRunFunctions,&found); if (found) return(TRUE); return(FALSE); }
globle BOOLEAN EnvRemoveResetFunction( void *theEnv, char *name) { int found; ConstructData(theEnv)->ListOfResetFunctions = RemoveFunctionFromCallList(theEnv,name,ConstructData(theEnv)->ListOfResetFunctions,&found); if (found) return(TRUE); return(FALSE); }
globle intBool EnvRemoveClearFunction( void *theEnv, EXEC_STATUS, char *name) { int found; ConstructData(theEnv,execStatus)->ListOfClearFunctions = RemoveFunctionFromCallList(theEnv,execStatus,name,ConstructData(theEnv,execStatus)->ListOfClearFunctions,&found); if (found) return(TRUE); return(FALSE); }