mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Implemented Unplugged GDI32 code
svn path=/trunk/; revision=5203
This commit is contained in:
@@ -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
|
||||
*/
|
||||
|
||||
@@ -8,6 +8,20 @@
|
||||
#include <win32k/kapi.h>
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
DWORD
|
||||
STDCALL
|
||||
GetObjectType(
|
||||
HGDIOBJ a0
|
||||
)
|
||||
{
|
||||
return W32kGetObjectType(a0);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user