Allow for the deallocation of the local DC structure once the new create I and DC are ready.

svn path=/trunk/; revision=26566
This commit is contained in:
James Tabor 2007-04-28 23:40:51 +00:00
parent 9d118cb21a
commit d51049e8a2
2 changed files with 23 additions and 24 deletions

View file

@ -123,3 +123,26 @@ GdiGetBatchLimit()
}
/*
* @unimplemented
*/
BOOL
STDCALL
GdiReleaseDC(HDC hdc)
{
GdiReleaseLocalDC(hdc);
return 0;
}
/*
* @unimplemented
*/
BOOL
STDCALL
GdiReleaseLocalDC(HDC hdc)
{
return 0;
}

View file

@ -1780,30 +1780,6 @@ GdiIsPlayMetafileDC(HDC hdc)
return 0;
}
/*
* @unimplemented
*/
BOOL
STDCALL
GdiReleaseDC(HDC hdc)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/*
* @unimplemented
*/
BOOL
STDCALL
GdiReleaseLocalDC(HDC hdc)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/*
* @unimplemented
*/