]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | #ifndef __HELPH_BASE__ |
2 | #define __HELPH_BASE__ | |
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 |
ad860fbf | 14 | #define classwxHelpController classwxWinHelpController |
2049ba38 | 15 | #elif defined(__WXGTK__) |
e5fb7191 | 16 | #define wxHelpController wxHTMLHelpController |
ad860fbf | 17 | #define classwxHelpController classwxHTMLHelpController |
e5fb7191 JS |
18 | #else |
19 | #define wxHelpController wxXLPHelpController | |
ad860fbf | 20 | #define classwxHelpController classwxXLPHelpController |
e5fb7191 JS |
21 | #endif |
22 | ||
c801d85f KB |
23 | #endif |
24 | // __HELPH_BASE__ |