wxWidgets/include/wx/help.h
Vadim Zeitlin 88ac883a0d new makefiles (part I)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-06-01 15:32:12 +00:00

20 lines
457 B
C

#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
// _WX_HELP_H_BASE_