Author: fireball Date: Sat Dec 30 14:04:20 2006 New Revision: 25248
URL: http://svn.reactos.org/svn/reactos?rev=25248&view=rev Log: Comment out a call to GdiReleaseDC() since it spams debug log with unimplemented messages. I put up a FIXME so it gets uncommented once GdiReleaseDC() is implemented.
Modified: trunk/reactos/dll/win32/user32/windows/dc.c
Modified: trunk/reactos/dll/win32/user32/windows/dc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/dc... ============================================================================== --- trunk/reactos/dll/win32/user32/windows/dc.c (original) +++ trunk/reactos/dll/win32/user32/windows/dc.c Sat Dec 30 14:04:20 2006 @@ -87,8 +87,9 @@ // if the DC was released return one.
if (!hDC) return FALSE; // Null hDC return zero. - - GdiReleaseDC ( hDC ); // Release locals. + + // FIXME: Uncomment once GdiReleaseDC() is implemented + //GdiReleaseDC ( hDC ); // Release locals. // Win 3.1 throw back, hWnd should be ignored and not used. // Replace with NtUserCallOneParam ((DWORD) hDC, ONEPARAM_ROUTINE_RELEASEDC); return NtUserReleaseDC(hWnd, hDC);