home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / help.h < prev    next >
C/C++ Source or Header  |  2002-03-23  |  711b  |  31 lines

  1. #ifndef _WX_HELP_H_BASE_
  2. #define _WX_HELP_H_BASE_
  3.  
  4. #if wxUSE_HELP
  5.  
  6. #include "wx/helpbase.h"
  7.  
  8. #ifdef __WXMSW__
  9.     #include "wx/msw/helpwin.h"
  10.  
  11.     #define wxHelpController wxWinHelpController
  12.     #define sm_classwxHelpController sm_classwxWinHelpController
  13. #else // !MSW
  14.  
  15. #if wxUSE_WXHTML_HELP
  16.     #include "wx/html/helpctrl.h"
  17.     #define wxHelpController wxHtmlHelpController
  18.     #define sm_classwxHelpController sm_classwxHtmlHelpController
  19. #else
  20.     #include "wx/generic/helpext.h"
  21.     #define wxHelpController wxExtHelpController
  22.     #define sm_classwxHelpController sm_classwxExtHelpController
  23. #endif
  24.  
  25. #endif // MSW/!MSW
  26.  
  27. #endif // wxUSE_HELP
  28.  
  29. #endif
  30.     // _WX_HELP_H_BASE_
  31.