Ejemplo n.º 1
0
globle intBool EnvUndefrule(
  void *theEnv,
  EXEC_STATUS,
  void *theDefrule)
  {
   return(Undefconstruct(theEnv,execStatus,theDefrule,DefruleData(theEnv,execStatus)->DefruleConstruct)); 
  }
Ejemplo n.º 2
0
globle intBool EnvUndeftemplate(
  void *theEnv,
  void *theDeftemplate)
  {   
   return(Undefconstruct(theEnv,theDeftemplate,DeftemplateData(theEnv)->DeftemplateConstruct)); 
  }
Ejemplo n.º 3
0
globle BOOLEAN EnvUndefrule(
  void *theEnv,
  void *theDefrule)
  {
   return(Undefconstruct(theEnv,theDefrule,DefruleData(theEnv)->DefruleConstruct)); 
  }
Ejemplo n.º 4
0
globle BOOLEAN Undefglobal(
  void *theDefglobal)
  { return(Undefconstruct(theDefglobal,DefglobalConstruct)); }
Ejemplo n.º 5
0
globle intBool EnvUndefglobal(
  void *theEnv,
  void *theDefglobal)
  {
   return(Undefconstruct(theEnv,theDefglobal,DefglobalData(theEnv)->DefglobalConstruct)); 
  }
Ejemplo n.º 6
0
globle BOOLEAN Undeftemplate(
  void *theDeftemplate)
  { return(Undefconstruct(theDeftemplate,DeftemplateConstruct)); }
Ejemplo n.º 7
0
globle BOOLEAN Undefrule(
  void *theDefrule)
  { return(Undefconstruct(theDefrule,DefruleConstruct)); }
Ejemplo n.º 8
0
globle intBool EnvUndeffacts(
  void *theEnv,
  void *theDeffacts)
  { 
   return(Undefconstruct(theEnv,theDeffacts,DeffactsData(theEnv)->DeffactsConstruct)); 
  }