Beispiel #1
0
void CgFrontModInitClose(       // CLOSE AFTER MODULE-INIT. PROCESSING
    SCOPE save_scope,           // - from ModuleInitResume
    void *save )                // - result from CgFrontModInitOpen
{
    ModuleInitRestore( save_scope );
    codeCGFILE = save;
}
Beispiel #2
0
void ModuleInitFini(            // COMPLETE MODULE-INITIALIZATION FUNCTION
    void )
{
    SCOPE save_scope;

    CgFrontSwitchFile( module_init_func );
    save_scope = ModuleInitResume();
    FunctionBodyShutdown( module_init_func, &module_fd );
    ScopeEnd( SCOPE_FUNCTION );
    ModuleInitRestore( save_scope );
    CgFrontModInitFini();
}