Parent Directory
|
Revision Log
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 |