renamed WXDLLEXPORT_BASE/CORE to WXDLLIMPEXP_BASE/CORE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21570 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -30,8 +30,8 @@
|
||||
|
||||
#ifdef __WXDEBUG__
|
||||
|
||||
WXDLLEXPORT_BASE void * wxDebugAlloc(size_t size, wxChar * fileName, int lineNum, bool isObject, bool isVect = FALSE);
|
||||
WXDLLEXPORT_BASE void wxDebugFree(void * buf, bool isVect = FALSE);
|
||||
WXDLLIMPEXP_BASE void * wxDebugAlloc(size_t size, wxChar * fileName, int lineNum, bool isObject, bool isVect = FALSE);
|
||||
WXDLLIMPEXP_BASE void wxDebugFree(void * buf, bool isVect = FALSE);
|
||||
|
||||
//**********************************************************************************
|
||||
/*
|
||||
@@ -124,9 +124,9 @@ typedef unsigned int wxMarkerType;
|
||||
allocated memory.
|
||||
*/
|
||||
|
||||
class WXDLLEXPORT_BASE wxMemStruct {
|
||||
class WXDLLIMPEXP_BASE wxMemStruct {
|
||||
|
||||
friend class WXDLLEXPORT_BASE wxDebugContext; // access to the m_next pointer for list traversal.
|
||||
friend class WXDLLIMPEXP_BASE wxDebugContext; // access to the m_next pointer for list traversal.
|
||||
|
||||
public:
|
||||
public:
|
||||
@@ -202,7 +202,7 @@ typedef void (wxMemStruct::*PmSFV) ();
|
||||
globals which have to do with the wxMemStruct class.
|
||||
*/
|
||||
|
||||
class WXDLLEXPORT_BASE wxDebugContext {
|
||||
class WXDLLIMPEXP_BASE wxDebugContext {
|
||||
|
||||
protected:
|
||||
// Used to set alignment for markers.
|
||||
@@ -300,8 +300,8 @@ private:
|
||||
};
|
||||
|
||||
// Output a debug message, in a system dependent fashion.
|
||||
void WXDLLEXPORT_BASE wxTrace(const wxChar *fmt ...) ATTRIBUTE_PRINTF_1;
|
||||
void WXDLLEXPORT_BASE wxTraceLevel(int level, const wxChar *fmt ...) ATTRIBUTE_PRINTF_2;
|
||||
void WXDLLIMPEXP_BASE wxTrace(const wxChar *fmt ...) ATTRIBUTE_PRINTF_1;
|
||||
void WXDLLIMPEXP_BASE wxTraceLevel(int level, const wxChar *fmt ...) ATTRIBUTE_PRINTF_2;
|
||||
|
||||
#define WXTRACE wxTrace
|
||||
#define WXTRACELEVEL wxTraceLevel
|
||||
|
Reference in New Issue
Block a user