Fix a compile error for SNOOP_GetProcAddress on non-i386.

This commit is contained in:
Emmanuel Maillard 2004-04-17 00:21:18 +00:00 committed by Alexandre Julliard
parent 716878c5b1
commit 8183eb658f
1 changed files with 2 additions and 2 deletions

View File

@ -1115,8 +1115,8 @@ FARPROC RELAY_GetProcAddress( HMODULE module, IMAGE_EXPORT_DIRECTORY *exports,
return proc;
}
FARPROC SNOOP_GetProcAddress( HMODULE hmod, IMAGE_EXPORT_DIRECTORY *exports,
DWORD exp_size, FARPROC origfun, DWORD ordinal )
FARPROC SNOOP_GetProcAddress( HMODULE hmod, IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
FARPROC origfun, DWORD ordinal, const WCHAR *user )
{
return origfun;
}