add stub for NtGdiEngDeleteSurface, NtGdiEngEraseSurface, NtGdiEngStrokeAndFillPath, NtGdiEngDeletePath

svn path=/trunk/; revision=28530
This commit is contained in:
Magnus Olsen 2007-08-24 21:57:50 +00:00
parent f268892b03
commit 2154cc31a3
2 changed files with 55 additions and 4 deletions

View file

@ -1491,3 +1491,54 @@ NtGdiEngDeletePalette(IN HPALETTE Palette)
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented
*/
BOOL STDCALL
NtGdiEngStrokeAndFillPath(SURFOBJ *pso,
PATHOBJ *ppo,
CLIPOBJ *pco,
XFORMOBJ *pxo,
BRUSHOBJ *pboStroke,
LINEATTRS *plineattrs,
BRUSHOBJ *pboFill,
POINTL *pptlBrushOrg,
MIX mixFill,
FLONG flOptions)
{
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented
*/
VOID STDCALL
NtGdiEngDeletePath(PATHOBJ *ppo)
{
UNIMPLEMENTED;
}
/*
* @unimplemented
*/
BOOL STDCALL
NtGdiEngDeleteSurface(IN HSURF Surface)
{
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented
*/
BOOL STDCALL
NtGdiEngEraseSurface(SURFOBJ *Surface,
RECTL *Rect,
ULONG iColor)
{
UNIMPLEMENTED;
return FALSE;
}

View file

@ -613,8 +613,8 @@ NtGdiEngCreatePalette 6
# NtGdiEngComputeGlyphSet 3
NtGdiEngCopyBits 6
NtGdiEngDeletePalette 1
# NtGdiEngDeleteSurface 1
# NtGdiEngEraseSurface 3
NtGdiEngDeleteSurface 1
NtGdiEngEraseSurface 3
# NtGdiEngUnlockSurface 1
NtGdiEngLockSurface 1
NtGdiEngBitBlt 11
@ -623,7 +623,7 @@ NtGdiEngStretchBlt 11
# NtGdiEngMarkBandingSurface 1
NtGdiEngStrokePath 8
# NtGdiEngFillPath 7
# NtGdiEngStrokeAndFillPath 10
NtGdiEngStrokeAndFillPath 10
# NtGdiEngPaint 5
# NtGdiEngLineTo 9
NtGdiEngAlphaBlend 7
@ -637,7 +637,7 @@ NtGdiEngTextOut 10
NtGdiCLIPOBJ_bEnum 3
NtGdiCLIPOBJ_cEnumStart 5
NtGdiCLIPOBJ_ppoGetPath 1
# NtGdiEngDeletePath 1
NtGdiEngDeletePath 1
NtGdiEngCreateClip 0
NtGdiEngDeleteClip 1
NtGdiBRUSHOBJ_ulGetBrushColor 1