예제 #1
0
파일: globldef.c 프로젝트: DrItanium/maya
const char *DefglobalPPForm(
  Defglobal *theDefglobal)
  {
   return GetConstructPPForm(&theDefglobal->header);
  }
예제 #2
0
globle const char *EnvGetDefclassPPForm(
  void *theEnv,
  void *theClass)
  {
   return GetConstructPPForm(theEnv,(struct constructHeader *) theClass);
  }
예제 #3
0
파일: ruledef.c 프로젝트: DrItanium/maya
const char *DefrulePPForm(
  Defrule *theDefrule)
  {
   return GetConstructPPForm(&theDefrule->header);
  }
예제 #4
0
globle const char *EnvGetDefrulePPForm(
  void *theEnv,
  void *theDefrule)
  {
   return GetConstructPPForm(theEnv,(struct constructHeader *) theDefrule);
  }
예제 #5
0
globle const char *EnvGetDeffunctionPPForm(
  void *theEnv,
  void *theDeffunction)
  {
   return GetConstructPPForm(theEnv,(struct constructHeader *) theDeffunction);
  }
예제 #6
0
파일: dffctdef.c 프로젝트: DrItanium/maya
const char *DeffactsPPForm(
  Deffacts *theDeffacts)
  {
   return GetConstructPPForm(&theDeffacts->header);
  }