mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-24 17:49:52 +01:00
improve mingw build - always hook dinput
This commit is contained in:
parent
d95423f5e6
commit
c43f38fad3
@ -607,13 +607,6 @@ void hook_init(BOOL initial_hook)
|
|||||||
/* Switch to 3 if we can be sure that ddraw.dll will not be unloaded from the process */
|
/* Switch to 3 if we can be sure that ddraw.dll will not be unloaded from the process */
|
||||||
g_config.hook = 3;
|
g_config.hook = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
if (g_config.hook == 4)
|
|
||||||
{
|
|
||||||
g_config.hook = 3;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!g_hook_active || g_config.hook == 3 || g_config.hook == 4)
|
if (!g_hook_active || g_config.hook == 3 || g_config.hook == 4)
|
||||||
|
@ -1114,9 +1114,23 @@ FARPROC WINAPI fake_GetProcAddress(HMODULE hModule, LPCSTR lpProcName)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
BOOL hook = g_config.hook == 3;
|
||||||
|
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
if (g_config.hook == 4 && hModule && HIWORD(lpProcName))
|
||||||
|
{
|
||||||
|
if (strcmp(lpProcName, "DirectInputCreateA") == 0 ||
|
||||||
|
strcmp(lpProcName, "DirectInputCreateEx") == 0 ||
|
||||||
|
strcmp(lpProcName, "DirectInput8Create") == 0)
|
||||||
|
{
|
||||||
|
hook = TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
FARPROC proc = real_GetProcAddress(hModule, lpProcName);
|
FARPROC proc = real_GetProcAddress(hModule, lpProcName);
|
||||||
|
|
||||||
if (g_config.hook != 3 || !hModule || !HIWORD(lpProcName))
|
if (!hook || !hModule || !HIWORD(lpProcName))
|
||||||
return proc;
|
return proc;
|
||||||
|
|
||||||
for (int i = 0; g_hook_hooklist[i].module_name[0]; i++)
|
for (int i = 0; g_hook_hooklist[i].module_name[0]; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user