Implemented Unplugged GDI32 code

svn path=/trunk/; revision=5203
This commit is contained in:
James Tabor 2003-07-21 04:04:31 +00:00
parent 7966c30375
commit ca2708a0f7
2 changed files with 15 additions and 15 deletions

View file

@ -1,4 +1,4 @@
/* $Id: stubs.c,v 1.28 2003/07/21 01:20:53 jimtabor Exp $
/* $Id: stubs.c,v 1.29 2003/07/21 04:04:20 jimtabor Exp $
*
* reactos/lib/gdi32/misc/stubs.c
*
@ -556,20 +556,6 @@ GetNearestPaletteIndex(
}
/*
* @unimplemented
*/
DWORD
STDCALL
GetObjectType(
HGDIOBJ a0
)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/*
* @unimplemented
*/

View file

@ -8,6 +8,20 @@
#include <win32k/kapi.h>
/*
* @implemented
*/
DWORD
STDCALL
GetObjectType(
HGDIOBJ a0
)
{
return W32kGetObjectType(a0);
}
/*
* @implemented
*/