1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 12:36:05 +08:00

Add quick and dirty Win64 static libraries

This commit is contained in:
Scott Ehlert
2015-07-09 13:19:34 -05:00
parent 4e0f6d3c60
commit 9a69b72448
10 changed files with 285 additions and 6 deletions

View File

@ -154,7 +154,7 @@ static HMODULE InternalLoadLibrary( const char *pName )
return LoadLibraryEx( pName, NULL, LOAD_WITH_ALTERED_SEARCH_PATH );
#endif
}
unsigned ThreadedLoadLibraryFunc( void *pParam )
uintp ThreadedLoadLibraryFunc(void *pParam)
{
ThreadedLoadLibaryContext_t *pContext = (ThreadedLoadLibaryContext_t*)pParam;
pContext->m_hLibrary = InternalLoadLibrary(pContext->m_pLibraryName);