mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[util] Rename CloseLibrary to FreeLibrary in win32 compat headers
Typo...
This commit is contained in:
parent
bfd47ec876
commit
f6fcbb7127
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue