mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
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:
parent
6ef81ff9e1
commit
0651dba483
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue