]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/help.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / help.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/help.h
3// Purpose: wxHelpController base header
4// Author: wxWidgets Team
5// Modified by:
6// Created:
7// Copyright: (c) Julian Smart
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_HELP_H_BASE_
12#define _WX_HELP_H_BASE_
13
14#include "wx/defs.h"
15
16#if wxUSE_HELP
17
18#include "wx/helpbase.h"
19
20#ifdef __WXWINCE__
21 #include "wx/msw/wince/helpwce.h"
22
23 #define wxHelpController wxWinceHelpController
24#elif defined(__WXMSW__)
25 #include "wx/msw/helpchm.h"
26
27 #define wxHelpController wxCHMHelpController
28#else // !MSW
29
30#if wxUSE_WXHTML_HELP
31 #include "wx/html/helpctrl.h"
32 #define wxHelpController wxHtmlHelpController
33#else
34 #include "wx/generic/helpext.h"
35 #define wxHelpController wxExtHelpController
36#endif
37
38#endif // MSW/!MSW
39
40#endif // wxUSE_HELP
41
42#endif
43 // _WX_HELP_H_BASE_