]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_HELP_H_BASE_ |
2 | #define _WX_HELP_H_BASE_ | |
c801d85f | 3 | |
2049ba38 | 4 | #ifdef __WXMSW__ |
c801d85f | 5 | #include "wx/msw/helpwin.h" |
2049ba38 | 6 | #elif defined(__WXGTK__) |
c801d85f KB |
7 | #include "wx/generic/helphtml.h" |
8 | #else | |
9 | #include "wx/generic/helpxlp.h" | |
10 | #endif | |
11 | ||
2049ba38 | 12 | #ifdef __WXMSW__ |
e5fb7191 | 13 | #define wxHelpController wxWinHelpController |
8cb50e4b | 14 | #define sm_classwxHelpController sm_classwxWinHelpController |
2049ba38 | 15 | #elif defined(__WXGTK__) |
e5fb7191 | 16 | #define wxHelpController wxHTMLHelpController |
8cb50e4b | 17 | #define sm_classwxHelpController sm_classwxHTMLHelpController |
e5fb7191 JS |
18 | #else |
19 | #define wxHelpController wxXLPHelpController | |
8cb50e4b | 20 | #define sm_classwxHelpController sm_classwxXLPHelpController |
e5fb7191 JS |
21 | #endif |
22 | ||
c801d85f | 23 | #endif |
34138703 | 24 | // _WX_HELP_H_BASE_ |