]>
Commit | Line | Data |
---|---|---|
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 | #elif defined(__WXMSW__) | |
13 | #include "wx/msw/helpwin.h" | |
14 | ||
15 | #define wxHelpController wxWinHelpController | |
16 | #else // !MSW | |
17 | ||
18 | #if wxUSE_WXHTML_HELP | |
19 | #include "wx/html/helpctrl.h" | |
20 | #define wxHelpController wxHtmlHelpController | |
21 | #else | |
22 | #include "wx/generic/helpext.h" | |
23 | #define wxHelpController wxExtHelpController | |
24 | #endif | |
25 | ||
26 | #endif // MSW/!MSW | |
27 | ||
28 | #endif // wxUSE_HELP | |
29 | ||
30 | #endif | |
31 | // _WX_HELP_H_BASE_ |