예제 #1
0
파일: globldef.c 프로젝트: DrItanium/maya
const char *DefglobalModule(
  Defglobal *theDefglobal)
  {
   return GetConstructModuleName(&theDefglobal->header);
  }
예제 #2
0
globle const char *EnvDefclassModule(
  void *theEnv,
  void *theClass)
  {
   return GetConstructModuleName((struct constructHeader *) theClass);
  }
예제 #3
0
파일: ruledef.c 프로젝트: DrItanium/maya
const char *DefruleModule(
  Defrule *theDefrule)
  {
   return GetConstructModuleName(&theDefrule->header);
  }
예제 #4
0
globle const char *EnvDefruleModule(
  void *theEnv,
  void *theDefrule)
  {
   return GetConstructModuleName((struct constructHeader *) theDefrule);
  }
예제 #5
0
globle const char *EnvDeffunctionModule(
  void *theEnv,
  void *theDeffunction)
  {
   return GetConstructModuleName((struct constructHeader *) theDeffunction);
  }
예제 #6
0
파일: dffctdef.c 프로젝트: DrItanium/maya
const char *DeffactsModule(
  Deffacts *theDeffacts)
  {
   return GetConstructModuleName(&theDeffacts->header);
  }