hhctrl.ocx: Avoid spamming console.

oldstable
Juan Lang 2007-10-15 11:19:56 -07:00 committed by Alexandre Julliard
parent 1392883b8e
commit 776f434a6e
1 changed files with 10 additions and 0 deletions

View File

@ -151,6 +151,16 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD_PTR dat
return NULL; /* FIXME */
}
case HH_PRETRANSLATEMESSAGE: {
static BOOL warned = FALSE;
if (!warned)
{
FIXME("HH_PRETRANSLATEMESSAGE unimplemented\n");
warned = TRUE;
}
return 0;
}
default:
FIXME("HH case %s not handled.\n", command_to_string( command ));
}