/*************************************************** NAME : SaveDeffunctions DESCRIPTION : Writes out deffunctions for (save) command INPUTS : The logical output name RETURNS : Nothing useful SIDE EFFECTS : Writes out deffunctions NOTES : None ***************************************************/ static void SaveDeffunctions( void *theEnv, void *theModule, char *logicalName) { SaveConstruct(theEnv,theModule,logicalName,DeffunctionData(theEnv)->DeffunctionConstruct); }
static void SaveDeftemplates( void *theEnv, void *theModule, char *logicalName) { SaveConstruct(theEnv,theModule,logicalName,DeftemplateData(theEnv)->DeftemplateConstruct); }
static void SaveDefrules( void *theEnv, void *theModule, const char *logicalName) { SaveConstruct(theEnv,theModule,logicalName,DefruleData(theEnv)->DefruleConstruct); }
/*************************************************** NAME : SaveDefinstances DESCRIPTION : Prints pretty print form of definstances to specified output INPUTS : The logical name of the output RETURNS : Nothing useful SIDE EFFECTS : None NOTES : None ***************************************************/ static void SaveDefinstances( void *theEnv, void *theModule, char *logName) { SaveConstruct(theEnv,theModule,logName,DefinstancesData(theEnv)->DefinstancesConstruct); }
static void SaveDefglobals( void *theEnv, void *theModule, char *logicalName) { SaveConstruct(theEnv,theModule,logicalName,DefglobalData(theEnv)->DefglobalConstruct); }
static void SaveDefrules( void *theEnv, EXEC_STATUS, void *theModule, char *logicalName) { SaveConstruct(theEnv,execStatus,theModule,logicalName,DefruleData(theEnv,execStatus)->DefruleConstruct); }
static void SaveDefglobals( char *logicalName) { SaveConstruct(logicalName,DefglobalConstruct); }
static void SaveDeftemplates( char *logicalName) { SaveConstruct(logicalName,DeftemplateConstruct); }
static void SaveDefrules( char *logicalName) { SaveConstruct(logicalName,DefruleConstruct); }