revert 24179 it was bad idea. and wrong way todo it on

See issue #21478 for more details.

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