#pragma hdrstop
#endif
+#include <wx/defs.h>
+
+#if defined(__WIN32__) && !defined(__GNUWIN32__)
+
#include <wx/log.h>
#include <wx/msw/ole/oleutils.h>
#include <wx/msw/ole/dataobj.h>
// functions
// ----------------------------------------------------------------------------
-#ifdef __DEBUG__
- static const char *GetTymedName(DWORD tymed);
-#else
- #define GetTymedName(tymed) ""
-#endif
+static const char *GetTymedName(DWORD tymed);
// ----------------------------------------------------------------------------
// wxIEnumFORMATETC interface implementation
m_pIDataObject->Release();
}
-#ifdef __DEBUG__
-
const char *wxDataObject::GetFormatName(wxDataFormat format)
{
+#ifdef __DEBUG__
static char s_szBuf[128];
switch ( format ) {
case CF_TEXT: return "CF_TEXT";
sprintf(s_szBuf, "clipboard format %d (unknown)", format);
return s_szBuf;
}
+ #else
+ return "";
+#endif
}
// ----------------------------------------------------------------------------
}
}
-#endif //DEBUG
\ No newline at end of file
+#endif
+