#include "wx/utils.h"
#include "wx/dialog.h"
#include "wx/app.h"
+#include "wx/bitmap.h"
+#include "wx/dcmemory.h"
#endif
#include "wx/dcprint.h"
void wxDC::DrawIcon(const wxIcon& icon, long x, long y)
{
-#if defined(__WIN32__)
+#if defined(__WIN32__) && !defined(__SC__)
::DrawIconEx((HDC) m_hDC, XLOG2DEV(x), YLOG2DEV(y), (HICON) icon.GetHICON(),
icon.GetWidth(), icon.GetHeight(), 0, 0, DI_NORMAL);
#else