mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
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:
parent
9d118cb21a
commit
d51049e8a2
2 changed files with 23 additions and 24 deletions
|
@ -123,3 +123,26 @@ GdiGetBatchLimit()
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
GdiReleaseDC(HDC hdc)
|
||||
{
|
||||
GdiReleaseLocalDC(hdc);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
GdiReleaseLocalDC(HDC hdc)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue