Fix a compile error for SNOOP_GetProcAddress and RELAY_GetProcAddress

on non-i386.
This commit is contained in:
Pierre d'Herbemont 2004-06-18 19:34:10 +00:00 committed by Alexandre Julliard
parent cbbb887d35
commit c196f63a72
1 changed files with 2 additions and 2 deletions

View File

@ -1109,13 +1109,13 @@ __ASM_GLOBAL_FUNC( SNOOP_Return,
#else /* __i386__ */
FARPROC RELAY_GetProcAddress( HMODULE module, IMAGE_EXPORT_DIRECTORY *exports,
FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
DWORD exp_size, FARPROC proc, const WCHAR *user )
{
return proc;
}
FARPROC SNOOP_GetProcAddress( HMODULE hmod, IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
FARPROC origfun, DWORD ordinal, const WCHAR *user )
{
return origfun;