blob: 46199c239826f45f618931427b8381b29e5972c2 [file]
//========= Copyright Valve Corporation ============//
#include <vrcore/sharedlibtools_public.h>
#include "vrcore/strtools_public.h"
#include <string.h>
#if defined(_WIN32)
#include <windows.h>
#endif
#if defined(POSIX)
#include <dlfcn.h>
#endif
SharedLibHandle SharedLib_Load( const char *pchPath, std::string *pErrStr )
{
SharedLibHandle pHandle = nullptr;
#if defined( _WIN32)
std::wstring wsFixedPath = UTF8to16( pchPath );
pHandle = ( SharedLibHandle )LoadLibraryExW( wsFixedPath.c_str(), NULL, LOAD_WITH_ALTERED_SEARCH_PATH );
#elif defined(POSIX)
pHandle = (SharedLibHandle) dlopen( pchPath, RTLD_LOCAL|RTLD_NOW );
#endif
if ( pHandle == nullptr && pErrStr )
{
#if defined( _WIN32)
// TODO: Consider using FormatMessage to get an error string for this error code
*pErrStr = std::to_string( GetLastError() );
#elif defined(POSIX)
char * pErr = dlerror();
if ( pErr )
{
*pErrStr = std::string ( pErr );
}
#endif
}
return pHandle;
}
void *SharedLib_GetFunction( SharedLibHandle lib, const char *pchFunctionName)
{
#if defined( _WIN32)
return (void*)GetProcAddress( (HMODULE)lib, pchFunctionName );
#elif defined(POSIX)
return dlsym( lib, pchFunctionName );
#endif
}
void SharedLib_Unload( SharedLibHandle lib )
{
if ( !lib )
return;
#if defined( _WIN32)
FreeLibrary( (HMODULE)lib );
#elif defined(POSIX)
dlclose( lib );
#endif
}