Module: wine Branch: master Commit: 776f434a6e7c00801b6d96a256e8947c2dd61ebf URL: http://source.winehq.org/git/wine.git/?a=commit;h=776f434a6e7c00801b6d96a256...
Author: Juan Lang juan.lang@gmail.com Date: Mon Oct 15 11:19:56 2007 -0700
hhctrl.ocx: Avoid spamming console.
---
dlls/hhctrl.ocx/hhctrl.c | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index 44a1eb3..2ca3d84 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 )); }