]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/help.h
Oops, I left an extra { in there.
[wxWidgets.git] / include / wx / help.h
... / ...
CommitLineData
1#ifndef _WX_HELP_H_BASE_
2#define _WX_HELP_H_BASE_
3
4#if wxUSE_HELP
5
6#include "wx/helpbase.h"
7
8#ifdef __WXWINCE__
9 #include "wx/msw/wince/helpwce.h"
10
11 #define wxHelpController wxWinceHelpController
12 #define sm_classwxHelpController sm_classwxWinceHelpController
13#elif defined(__WXMSW__)
14 #include "wx/msw/helpwin.h"
15
16 #define wxHelpController wxWinHelpController
17 #define sm_classwxHelpController sm_classwxWinHelpController
18#else // !MSW
19
20#if wxUSE_WXHTML_HELP
21 #include "wx/html/helpctrl.h"
22 #define wxHelpController wxHtmlHelpController
23 #define sm_classwxHelpController sm_classwxHtmlHelpController
24#else
25 #include "wx/generic/helpext.h"
26 #define wxHelpController wxExtHelpController
27 #define sm_classwxHelpController sm_classwxExtHelpController
28#endif
29
30#endif // MSW/!MSW
31
32#endif // wxUSE_HELP
33
34#endif
35 // _WX_HELP_H_BASE_