mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Implimented DeleteDC()
svn path=/trunk/; revision=1232
This commit is contained in:
parent
2f1d0bf882
commit
194e86b860
2 changed files with 7 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: stubs.c,v 1.3 2000/06/16 07:34:15 jfilby Exp $
|
||||
/* $Id: stubs.c,v 1.4 2000/07/07 00:37:52 phreak Exp $
|
||||
*
|
||||
* reactos/lib/gdi32/misc/stubs.c
|
||||
*
|
||||
|
@ -291,19 +291,6 @@ CreateSolidBrush(
|
|||
}
|
||||
|
||||
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
DeleteDC(
|
||||
HDC a0
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
DeleteMetaFile(
|
||||
|
|
|
@ -86,6 +86,12 @@ CreateDCW (
|
|||
);
|
||||
}
|
||||
|
||||
BOOL STDCALL DeleteDC( HDC hDC )
|
||||
{
|
||||
return W32kDeleteDC( hDC );
|
||||
}
|
||||
|
||||
|
||||
HDC
|
||||
STDCALL
|
||||
CreateCompatibleDC(
|
||||
|
|
Loading…
Reference in a new issue