Use dynloader.c instead of dlopen() directly

This commit is contained in:
jsteube
2018-12-19 16:09:28 +01:00
parent 15f546bc4e
commit 4028bae578
11 changed files with 518 additions and 521 deletions
+2 -2
View File
@@ -22,9 +22,9 @@ HMODULE hc_dlopen (LPCSTR lpLibFileName);
BOOL hc_dlclose (HMODULE hLibModule);
FARPROC hc_dlsym (HMODULE hModule, LPCSTR lpProcName);
#else
void *hc_dlopen (const char *fileName, int flag);
void *hc_dlopen (const char *filename);
int hc_dlclose (void *handle);
void *hc_dlsym (void *module, const char *symbol);
void *hc_dlsym (void *handle, const char *symbol);
#endif
#define HC_LOAD_FUNC2(ptr,name,type,var,libname,noerr) \