Esempio n. 1
0
globle BOOLEAN EnvRemovePeriodicFunction(
  void *theEnv,
  char *name)
  {
   return(RemoveCPFunction(theEnv,name,&UtilityData(theEnv)->ListOfPeriodicFunctions));
  }
Esempio n. 2
0
globle BOOLEAN RemovePeriodicFunction(
  char *name)
  {
   return(RemoveCPFunction(name,&ListOfPeriodicFunctions));
  }
Esempio n. 3
0
globle BOOLEAN RemoveCleanupFunction(
  void *theEnv,
  char *name)
  {
   return(RemoveCPFunction(theEnv,name,&UtilityData(theEnv)->ListOfCleanupFunctions));
  }
Esempio n. 4
0
globle BOOLEAN RemoveCleanupFunction(
  char *name)
  {
   return(RemoveCPFunction(name,&ListOfCleanupFunctions));
  }