MCPcopy Create free account
hub / github.com/ValveSoftware/openvr / SharedLib_Unload

Function SharedLib_Unload

src/vrcore/sharedlibtools_public.cpp:54–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52
53
54void SharedLib_Unload( SharedLibHandle lib )
55{
56 if ( !lib )
57 return;
58#if defined( _WIN32)
59 FreeLibrary( (HMODULE)lib );
60#elif defined(POSIX)
61 dlclose( lib );
62#endif
63}
64
65

Callers 4

VR_InitInternal2Function · 0.85
VR_ShutdownInternalFunction · 0.85
VR_LoadHmdSystemInternalFunction · 0.85
VR_IsHmdPresentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected