]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/help.h
Unicode fix.
[wxWidgets.git] / include / wx / help.h
index 9622355ff6aa3a2aa4d007e428cf535b4d6e2903..3c7cd47280a7e09a58d93d44325d21dfd9e52f0d 100644 (file)
@@ -1,13 +1,19 @@
-#ifndef __HELPH_BASE__
-#define __HELPH_BASE__
-
-#ifdef __WINDOWS__
-#include "wx/msw/helpwin.h"
-#elif defined(__GTK__)
-#include "wx/generic/helphtml.h"
-#else
-#include "wx/generic/helpxlp.h"
-#endif
+#ifndef _WX_HELP_H_BASE_
+#define _WX_HELP_H_BASE_
+
+#include "wx/helpbase.h"
+
+#ifdef __WXMSW__
+    #include "wx/msw/helpwin.h"
+
+    #define wxHelpController wxWinHelpController
+    #define sm_classwxHelpController sm_classwxWinHelpController
+#else // !MSW
+    #include "wx/generic/helpext.h"
+
+    #define wxHelpController wxExtHelpController
+    #define sm_classwxHelpController sm_classwxExtHelpController
+#endif // MSW/!MSW
 
 #endif
-    // __HELPH_BASE__
+    // _WX_HELP_H_BASE_