Remove leftover GetProcAddress definition

remotes/1722699834674540220/tmp_refs/heads/master^2
Felix 2021-06-16 17:53:11 +00:00
parent 872ddd5a4a
commit 88128af7c8
No known key found for this signature in database
GPG Key ID: 69ADF8AEB6C8B5D1
1 changed files with 0 additions and 2 deletions

View File

@ -29,7 +29,6 @@ static HMODULE WINAPI hook_GetModuleHandleA(const char *name);
static HMODULE WINAPI hook_GetModuleHandleW(const wchar_t *name);
static HMODULE WINAPI hook_LoadLibraryA(const char *name);
static HMODULE WINAPI hook_LoadLibraryW(const wchar_t *name);
static void * WINAPI hook_GetProcAddress(HMODULE mod, const char *name);
/* Link pointers */
@ -38,7 +37,6 @@ static HMODULE (WINAPI *next_GetModuleHandleA)(const char *name);
static HMODULE (WINAPI *next_GetModuleHandleW)(const wchar_t *name);
static HMODULE (WINAPI *next_LoadLibraryA)(const char *name);
static HMODULE (WINAPI *next_LoadLibraryW)(const wchar_t *name);
static void * (WINAPI *next_GetProcAddress)(HMODULE mod, const char *name);
static const struct hook_symbol dll_loader_syms[] = {
{