Osiris_ShutdownModuleLoader Purpose: Closes down the OSIRIS module loader and handling system
| 567 | // Purpose: |
| 568 | // Closes down the OSIRIS module loader and handling system |
| 569 | void Osiris_ShutdownModuleLoader(void) { |
| 570 | mprintf(0, "OSIRIS: Shutting down module manager\n"); |
| 571 | int i; |
| 572 | for (i = 0; i < MAX_LOADED_MODULES; i++) { |
| 573 | Osiris_FreeModule(i); |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | // Osiris_InitModuleLoader |
| 578 | // Purpose: |
nothing calls this directly
no test coverage detected