Rename OS module loading function as it clashes with define on win32

This commit is contained in:
baldurk
2015-08-31 17:12:21 +02:00
parent 32b028e5a6
commit 277b97efb6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -396,7 +396,7 @@ void Process::StartGlobalHook(const char *pathmatch, const char *logfile, const
RDCUNIMPLEMENTED("Global hooking of all processes on linux");
}
bool Process::LoadLibrary(const char *module)
bool Process::LoadModule(const char *module)
{
return dlopen(module, RTLD_NOW) != NULL;
}