/[winpt]/trunk/Include/myhtmlphelp.h
ViewVC logotype

Contents of /trunk/Include/myhtmlphelp.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 84 - (show annotations)
Wed Nov 16 13:13:41 2005 UTC (19 years, 3 months ago) by twoaday
File MIME type: text/plain
File size: 642 byte(s)
The HTML-Help API is missing in mingw32. Include
header file with all needed constants and funcctions.


1 #ifndef MY_HTMLHELP_H
2 #define MY_HTMLHELP_H
3
4 enum hhelp_id_t {
5 HELP_INFO_WINDOW = 1,
6 HH_UNINITIALIZE = 0x001D, // Uninitializes the help system.
7 HH_INITIALIZE = 0x001C, // Initializes the help system.
8
9 HH_TP_HELP_WM_HELP = 0x0011, // text popup help, same as WinHelp HELP_WM_HELP
10
11 };
12
13 typedef struct tagHELPINFO {
14 UINT cbSize;
15 int iContextType;
16 int iCtrlId;
17 HANDLE hItemHandle;
18 DWORD dwContextId;
19 POINT MousePos;
20 } HELPINFO, *LPHELPINFO;
21
22 HWND HtmlHelp(HWND hwndCaller,
23 LPCSTR pszFile,
24 UINT uCommand,
25 DWORD dwData);
26 #endif /*MY_HTMLHELP_H*/

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26