MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / closeLib

Method closeLib

extlibs/dynamicLinker/src/dynamicLinker.cpp:13–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11namespace dynamicLinker {
12
13 bool dynamicLinker::closeLib() {
14#ifdef _WIN32
15 return FreeLibrary( (HINSTANCE) lib->ptr() );
16#else
17 return ( dlclose( lib->ptr() ) == 0 );
18#endif
19 }
20
21 void * dynamicLinker::openLib() {
22#ifdef _WIN32

Callers

nothing calls this directly

Calls 1

ptrMethod · 0.80

Tested by

no test coverage detected