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:
Vadim Zeitlin
2002-01-28 13:19:44 +00:00
parent a28ae4096b
commit 7cc5a448dc
2 changed files with 17 additions and 13 deletions

View File

@@ -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;

View File

@@ -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