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.

svn path=/trunk/; revision=25248
This commit is contained in:
Aleksey Bragin 2006-12-30 11:04:20 +00:00
parent 6ef81ff9e1
commit 0651dba483

View file

@ -87,8 +87,9 @@ ReleaseDC(
// 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);