mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
Implement stub : NtGdiCLIPOBJ_bEnum
Implement stub : NtGdiCLIPOBJ_cEnumStart Implement stub : NtGdiCLIPOBJ_ppoGetPath Implement stub : NtGdiBRUSHOBJ_ulGetBrushColor Implement stub : NtGdiBRUSHOBJ_pvAllocRbrush Implement stub : NtGdiBRUSHOBJ_pvGetRbrush svn path=/trunk/; revision=28466
This commit is contained in:
parent
94e74e9b8b
commit
46fb3ca2dc
2 changed files with 64 additions and 6 deletions
|
@ -1243,3 +1243,61 @@ NtGdiBRUSHOBJ_pvAllocRbrush(IN BRUSHOBJ *BrushObj,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
PVOID STDCALL
|
||||
NtGdiBRUSHOBJ_pvGetRbrush(IN BRUSHOBJ *BrushObj)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
ULONG STDCALL
|
||||
NtGdiBRUSHOBJ_ulGetBrushColor(BRUSHOBJ *pbo)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
NtGdiCLIPOBJ_bEnum( IN CLIPOBJ *ClipObj,
|
||||
IN ULONG ObjSize,
|
||||
OUT ULONG *EnumRects)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
ULONG STDCALL
|
||||
NtGdiCLIPOBJ_cEnumStart(IN CLIPOBJ *ClipObj,
|
||||
IN BOOL ShouldDoAll,
|
||||
IN ULONG ClipType,
|
||||
IN ULONG BuildOrder,
|
||||
IN ULONG MaxRects)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
PATHOBJ* STDCALL
|
||||
NtGdiCLIPOBJ_ppoGetPath(CLIPOBJ *ClipObj)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -634,15 +634,15 @@ NtGdiEngAlphaBlend 7
|
|||
# NtGdiXLATEOBJ_cGetPalette 4
|
||||
# NtGdiXLATEOBJ_iXlate 2
|
||||
# NtGdiXLATEOBJ_hGetColorTransform 1
|
||||
# NtGdiCLIPOBJ_bEnum 3
|
||||
# NtGdiCLIPOBJ_cEnumStart 5
|
||||
# NtGdiCLIPOBJ_ppoGetPath 1
|
||||
NtGdiCLIPOBJ_bEnum 3
|
||||
NtGdiCLIPOBJ_cEnumStart 5
|
||||
NtGdiCLIPOBJ_ppoGetPath 1
|
||||
# NtGdiEngDeletePath 1
|
||||
# NtGdiEngCreateClip 0
|
||||
# NtGdiEngDeleteClip 1
|
||||
# NtGdiBRUSHOBJ_ulGetBrushColor 1
|
||||
NtGdiBRUSHOBJ_pvAllocRbrush 2
|
||||
# NtGdiBRUSHOBJ_pvGetRbrush 1
|
||||
NtGdiBRUSHOBJ_ulGetBrushColor 1
|
||||
NtGdiBRUSHOBJ_pvAllocRbrush 2
|
||||
NtGdiBRUSHOBJ_pvGetRbrush 1
|
||||
NtGdiBRUSHOBJ_hGetColorTransform 1
|
||||
# NtGdiXFORMOBJ_bApplyXform 5
|
||||
# NtGdiXFORMOBJ_iGetXform 2
|
||||
|
|
Loading…
Reference in a new issue