Ejemplo n.º 1
0
const char *DefglobalModule(
  Defglobal *theDefglobal)
  {
   return GetConstructModuleName(&theDefglobal->header);
  }
Ejemplo n.º 2
0
globle const char *EnvDefclassModule(
  void *theEnv,
  void *theClass)
  {
   return GetConstructModuleName((struct constructHeader *) theClass);
  }
Ejemplo n.º 3
0
const char *DefruleModule(
  Defrule *theDefrule)
  {
   return GetConstructModuleName(&theDefrule->header);
  }
Ejemplo n.º 4
0
globle const char *EnvDefruleModule(
  void *theEnv,
  void *theDefrule)
  {
   return GetConstructModuleName((struct constructHeader *) theDefrule);
  }
Ejemplo n.º 5
0
globle const char *EnvDeffunctionModule(
  void *theEnv,
  void *theDeffunction)
  {
   return GetConstructModuleName((struct constructHeader *) theDeffunction);
  }
Ejemplo n.º 6
0
const char *DeffactsModule(
  Deffacts *theDeffacts)
  {
   return GetConstructModuleName(&theDeffacts->header);
  }