Silence silly error messages.

This commit is contained in:
Ulrich Weigand 2000-12-27 18:37:37 +00:00 committed by Alexandre Julliard
parent 5a8eef38ed
commit 9a07b168b0
2 changed files with 2 additions and 2 deletions

View File

@ -315,8 +315,8 @@ void WINAPI SNOOP16_Return(FARPROC proc, LPBYTE args, CONTEXT86 *context) {
}
#else /* !__i386__ */
void SNOOP16_RegisterDLL(NE_MODULE *pModule,LPCSTR name) {
if (!TRACE_ON(snoop)) return;
FIXME("snooping works only on i386 for now.\n");
return;
}
FARPROC16 SNOOP16_GetProcAddress16(HMODULE16 hmod,DWORD ordinal,FARPROC16 origfun) {

View File

@ -380,8 +380,8 @@ __ASM_GLOBAL_FUNC( SNOOP_Return,
#else /* !__i386__ */
void SNOOP_RegisterDLL(HMODULE hmod,LPCSTR name,DWORD nrofordinals) {
if (!TRACE_ON(snoop)) return;
FIXME("snooping works only on i386 for now.\n");
return;
}
FARPROC SNOOP_GetProcAddress(HMODULE hmod,LPCSTR name,DWORD ordinal,FARPROC origfun) {