Compare commits

..

No commits in common. "0de7beb351751caf662a9ca8f81f2c038db7fea0" and "4d38b9c73bd9df6328e604041d1a7f87033c5496" have entirely different histories.

View File

@ -79,7 +79,7 @@ extern AMX_NATIVE_INFO g_GameConfigNatives[];
#define DLPROC(m, func) GetProcAddress(m, func)
#define DLFREE(m) FreeLibrary(m)
#else
#define DLLOAD(path) (DLHANDLE)dlopen(path, RTLD_NOW | RTLD_LOCAL | RTLD_DEEPBIND)
#define DLLOAD(path) (DLHANDLE)dlopen(path, RTLD_NOW)
#define DLPROC(m, func) dlsym(m, func)
#define DLFREE(m) dlclose(m)
#endif