Unicode compilation fixes, also moved private constants into the .cpp
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13877 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -18,19 +18,6 @@
|
|||||||
#include "wx/helpbase.h"
|
#include "wx/helpbase.h"
|
||||||
#include "wx/frame.h"
|
#include "wx/frame.h"
|
||||||
|
|
||||||
/// Name for map file.
|
|
||||||
#define WXEXTHELP_MAPFILE "wxhelp.map"
|
|
||||||
/// Path separator.
|
|
||||||
#ifdef __WXMSW__
|
|
||||||
#define WXEXTHELP_SEPARATOR '\\'
|
|
||||||
#else
|
|
||||||
#define WXEXTHELP_SEPARATOR '/'
|
|
||||||
#endif
|
|
||||||
/// Maximum line length in map file.
|
|
||||||
#define WXEXTHELP_BUFLEN 512
|
|
||||||
/// Character introducing comments/documentation field in map file.
|
|
||||||
#define WXEXTHELP_COMMENTCHAR ';'
|
|
||||||
|
|
||||||
class WXDLLEXPORT wxExtHelpMapList;
|
class WXDLLEXPORT wxExtHelpMapList;
|
||||||
|
|
||||||
|
|
||||||
|
@@ -44,6 +44,23 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// constants
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/// Name for map file.
|
||||||
|
#define WXEXTHELP_MAPFILE _T("wxhelp.map")
|
||||||
|
/// Path separator.
|
||||||
|
#ifdef __WXMSW__
|
||||||
|
#define WXEXTHELP_SEPARATOR _T('\\')
|
||||||
|
#else
|
||||||
|
#define WXEXTHELP_SEPARATOR _T('/')
|
||||||
|
#endif
|
||||||
|
/// Maximum line length in map file.
|
||||||
|
#define WXEXTHELP_BUFLEN 512
|
||||||
|
/// Character introducing comments/documentation field in map file.
|
||||||
|
#define WXEXTHELP_COMMENTCHAR ';'
|
||||||
|
|
||||||
#define CONTENTS_ID 0
|
#define CONTENTS_ID 0
|
||||||
|
|
||||||
class wxExtHelpMapEntry : public wxObject
|
class wxExtHelpMapEntry : public wxObject
|
||||||
|
Reference in New Issue
Block a user