2 * hhctrl implementation
4 * Copyright 2004 Krzysztof Foltman
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp
);
33 int WINAPI
doWinMain(HINSTANCE hInstance
, LPSTR szCmdLine
);
35 static const char *command_to_string(UINT command
)
37 #define X(x) case x: return #x
40 X( HH_DISPLAY_TOPIC
);
42 X( HH_DISPLAY_INDEX
);
43 X( HH_DISPLAY_SEARCH
);
46 X( HH_GET_WIN_HANDLE
);
47 X( HH_ENUM_INFO_TYPE
);
48 X( HH_SET_INFO_TYPE
);
53 X( HH_KEYWORD_LOOKUP
);
54 X( HH_DISPLAY_TEXT_POPUP
);
56 X( HH_TP_HELP_CONTEXTMENU
);
57 X( HH_TP_HELP_WM_HELP
);
60 X( HH_GET_LAST_ERROR
);
61 X( HH_ENUM_CATEGORY
);
62 X( HH_ENUM_CATEGORY_IT
);
63 X( HH_RESET_IT_FILTER
);
64 X( HH_SET_INCLUSIVE_FILTER
);
65 X( HH_SET_EXCLUSIVE_FILTER
);
68 X( HH_PRETRANSLATEMESSAGE
);
69 X( HH_SET_GLOBAL_PROPERTY
);
70 default: return "???";
75 HWND WINAPI
HtmlHelpW(HWND caller
, LPCWSTR filename
, UINT command
, DWORD data
)
79 TRACE("(%p, %s, command=%s, data=%d)\n",
80 caller
, debugstr_w( filename
),
81 command_to_string( command
), data
);
85 DWORD len
= WideCharToMultiByte( CP_ACP
, 0, filename
, -1, NULL
, 0, NULL
, NULL
);
87 file
= HeapAlloc( GetProcessHeap(), 0, len
);
88 WideCharToMultiByte( CP_ACP
, 0, filename
, -1, file
, len
, NULL
, NULL
);
93 case HH_DISPLAY_TOPIC
:
95 case HH_DISPLAY_SEARCH
:
97 FIXME("Not all HH cases handled correctly\n");
98 doWinMain(GetModuleHandleW(NULL
), file
);
101 FIXME("HH case %s not handled.\n", command_to_string( command
));
103 HeapFree(GetProcessHeap(), 0, file
);
107 HWND WINAPI
HtmlHelpA(HWND caller
, LPCSTR filename
, UINT command
, DWORD data
)
114 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, filename
, -1, NULL
, 0 );
116 wfile
= HeapAlloc( GetProcessHeap(), 0, len
*sizeof(WCHAR
));
117 MultiByteToWideChar( CP_ACP
, 0, filename
, -1, wfile
, len
);
120 result
= HtmlHelpW( caller
, wfile
, command
, data
);
122 HeapFree( GetProcessHeap(), 0, wfile
);