Implimented DeleteDC()

svn path=/trunk/; revision=1232
This commit is contained in:
Phillip Susi 2000-07-07 00:38:17 +00:00
parent 2f1d0bf882
commit 194e86b860
2 changed files with 7 additions and 14 deletions

View file

@ -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(

View file

@ -86,6 +86,12 @@ CreateDCW (
);
}
BOOL STDCALL DeleteDC( HDC hDC )
{
return W32kDeleteDC( hDC );
}
HDC
STDCALL
CreateCompatibleDC(