From 776f434a6e7c00801b6d96a256e8947c2dd61ebf Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Mon, 15 Oct 2007 11:19:56 -0700 Subject: [PATCH] hhctrl.ocx: Avoid spamming console. --- dlls/hhctrl.ocx/hhctrl.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index 44a1eb3bf7f..2ca3d840f3d 100644 --- a/dlls/hhctrl.ocx/hhctrl.c +++ b/dlls/hhctrl.ocx/hhctrl.c @@ -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 )); }