Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
54
void 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_InitInternal2
Function · 0.85
VR_ShutdownInternal
Function · 0.85
VR_LoadHmdSystemInternal
Function · 0.85
VR_IsHmdPresent
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected