X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2bda0e173844e8e0f8acf4e8ad8b5c26e5c6fe5d..4438caf41af49f00f3c8137ac801871f59cce386:/src/msw/dcscreen.cpp diff --git a/src/msw/dcscreen.cpp b/src/msw/dcscreen.cpp index 71d61dd7d9..64c6908cfd 100644 --- a/src/msw/dcscreen.cpp +++ b/src/msw/dcscreen.cpp @@ -21,11 +21,13 @@ #endif #ifndef WX_PRECOMP + #include "wx/string.h" + #include "wx/window.h" + #include "wx/msw/private.h" #endif #include "wx/dcscreen.h" -#include #if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC) @@ -34,14 +36,14 @@ IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC) // Create a DC representing the whole screen wxScreenDC::wxScreenDC(void) { - m_hDC = (WXHDC) ::GetDC(NULL); + m_hDC = (WXHDC) ::GetDC((HWND) NULL); m_hDCCount ++; } wxScreenDC::~wxScreenDC(void) { SelectOldObjects(m_hDC); - ::ReleaseDC(NULL, (HDC) m_hDC); + ::ReleaseDC((HWND) NULL, (HDC) m_hDC); m_hDC = 0; m_hDCCount --; }