[util] Rename CloseLibrary to FreeLibrary in win32 compat headers

Typo...
This commit is contained in:
Joshua Ashton 2022-08-26 17:40:09 +00:00 committed by Philip Rebohle
parent bfd47ec876
commit f6fcbb7127
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ inline HMODULE LoadLibraryA(LPCSTR lpLibFileName) {
return dlopen(lpLibFileName, RTLD_NOW);
}
inline void CloseLibrary(HMODULE module) {
inline void FreeLibrary(HMODULE module) {
dlclose(module);
}