MCPcopy Create free account
hub / github.com/RenderKit/oidn / closeModule

Method closeModule

core/module.cpp:98–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96 }
97
98 void ModuleLoader::closeModule(void* module)
99 {
100 #if defined(_WIN32)
101 FreeLibrary(static_cast<HMODULE>(module));
102 #else
103 dlclose(module);
104 #endif
105 }
106
107 ModuleLoader::Path ModuleLoader::getModulePath(void* address)
108 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected