7a02658071
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
36 lines
865 B
C
36 lines
865 B
C
#ifndef _WX_HELP_H_BASE_
|
|
#define _WX_HELP_H_BASE_
|
|
|
|
#if wxUSE_HELP
|
|
|
|
#include "wx/helpbase.h"
|
|
|
|
#ifdef __WXWINCE__
|
|
#include "wx/msw/wince/helpwce.h"
|
|
|
|
#define wxHelpController wxWinceHelpController
|
|
#define sm_classwxHelpController sm_classwxWinceHelpController
|
|
#elif defined(__WXMSW__)
|
|
#include "wx/msw/helpwin.h"
|
|
|
|
#define wxHelpController wxWinHelpController
|
|
#define sm_classwxHelpController sm_classwxWinHelpController
|
|
#else // !MSW
|
|
|
|
#if wxUSE_WXHTML_HELP
|
|
#include "wx/html/helpctrl.h"
|
|
#define wxHelpController wxHtmlHelpController
|
|
#define sm_classwxHelpController sm_classwxHtmlHelpController
|
|
#else
|
|
#include "wx/generic/helpext.h"
|
|
#define wxHelpController wxExtHelpController
|
|
#define sm_classwxHelpController sm_classwxExtHelpController
|
|
#endif
|
|
|
|
#endif // MSW/!MSW
|
|
|
|
#endif // wxUSE_HELP
|
|
|
|
#endif
|
|
// _WX_HELP_H_BASE_
|