implemet GdiReleaseDC it redirect to NtUserReleaseDC(HWD hwd, HDC hdc) now

svn path=/trunk/; revision=24179
This commit is contained in:
Magnus Olsen
2006-09-17 22:10:24 +00:00
parent 3e709fbbd9
commit 70cca480e5
3 changed files with 12 additions and 11 deletions
@@ -31,4 +31,6 @@
/* Deprecated NTGDI calls which shouldn't exist */
#include <win32k/ntgdibad.h>
#include <win32k/ntusrtyp.h>
#include <win32k/ntuser.h>
/* EOF */
-11
View File
@@ -1838,17 +1838,6 @@ GdiIsPlayMetafileDC(HDC hdc)
return 0;
}
/*
* @unimplemented
*/
BOOL
STDCALL
GdiReleaseDC(HDC hdc)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/*
* @unimplemented
+10
View File
@@ -458,3 +458,13 @@ GetObjectType(
SetLastError(ERROR_INVALID_HANDLE);
return Ret;
}
/*
* @implemented
*/
BOOL
STDCALL
GdiReleaseDC(HDC hdc)
{
return NtUserReleaseDC(NULL,hdc);
}