initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
38
libs/wxWidgets-3.3.1/include/wx/help.h
Normal file
38
libs/wxWidgets-3.3.1/include/wx/help.h
Normal file
@@ -0,0 +1,38 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/help.h
|
||||
// Purpose: wxHelpController base header
|
||||
// Author: wxWidgets Team
|
||||
// Created:
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_HELP_H_BASE_
|
||||
#define _WX_HELP_H_BASE_
|
||||
|
||||
#include "wx/defs.h"
|
||||
|
||||
#if wxUSE_HELP
|
||||
|
||||
#include "wx/helpbase.h"
|
||||
|
||||
#if defined(__WXMSW__)
|
||||
#include "wx/msw/helpchm.h"
|
||||
|
||||
#define wxHelpController wxCHMHelpController
|
||||
#else // !MSW
|
||||
|
||||
#if wxUSE_WXHTML_HELP
|
||||
#include "wx/html/helpctrl.h"
|
||||
#define wxHelpController wxHtmlHelpController
|
||||
#else
|
||||
#include "wx/generic/helpext.h"
|
||||
#define wxHelpController wxExtHelpController
|
||||
#endif
|
||||
|
||||
#endif // MSW/!MSW
|
||||
|
||||
#endif // wxUSE_HELP
|
||||
|
||||
#endif
|
||||
// _WX_HELP_H_BASE_
|
||||
Reference in New Issue
Block a user