Commit 900c0e58 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

Added htmlhelp.h.

parent 630dc0f5
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "winnls.h" #include "winnls.h"
#include "winuser.h" #include "winuser.h"
#include "wine/debug.h" #include "wine/debug.h"
#include "htmlhelp.h"
WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp); WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp);
...@@ -34,7 +35,7 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD data) ...@@ -34,7 +35,7 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD data)
FIXME("(%p, %s, %d, %ld): stub\n", caller, debugstr_w(filename), command, data); FIXME("(%p, %s, %d, %ld): stub\n", caller, debugstr_w(filename), command, data);
/* if command is HH_DISPLAY_TOPIC just display an informative message for now */ /* if command is HH_DISPLAY_TOPIC just display an informative message for now */
if (command == 0) if (command == HH_DISPLAY_TOPIC)
MessageBoxA( NULL, "HTML Help functionality is currently unimplemented.\n\n" MessageBoxA( NULL, "HTML Help functionality is currently unimplemented.\n\n"
"Try installing Internet Explorer, or using a native hhctrl.ocx with the Mozilla ActiveX control.", "Try installing Internet Explorer, or using a native hhctrl.ocx with the Mozilla ActiveX control.",
"Wine", MB_OK | MB_ICONEXCLAMATION ); "Wine", MB_OK | MB_ICONEXCLAMATION );
......
...@@ -105,6 +105,7 @@ WINDOWS_INCLUDES = \ ...@@ -105,6 +105,7 @@ WINDOWS_INCLUDES = \
fci.h \ fci.h \
fdi.h \ fdi.h \
guiddef.h \ guiddef.h \
htmlhelp.h \
icm.h \ icm.h \
icmpapi.h \ icmpapi.h \
imagehlp.h \ imagehlp.h \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment