mirror of
https://github.com/reactos/reactos.git
synced 2025-05-12 13:58:16 +00:00
implement stub for NtGdiInitSpool, NtGdiQueryFonts, NtGdiGetSpoolMessage.
the NtGdiGetSpoolMessage missing the protypes. svn path=/trunk/; revision=28675
This commit is contained in:
parent
c7b707f3fc
commit
280e3b52d4
2 changed files with 171 additions and 132 deletions
|
@ -2143,6 +2143,7 @@ NtGdiConvertMetafileRect(
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
@ -2630,7 +2631,45 @@ NtGdiDvpGetVideoPortField(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOL
|
||||||
|
STDCALL
|
||||||
|
NtGdiInitSpool()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
INT
|
||||||
|
APIENTRY
|
||||||
|
NtGdiQueryFonts( OUT PUNIVERSAL_FONT_ID pufiFontList,
|
||||||
|
IN ULONG nBufferSize,
|
||||||
|
OUT PLARGE_INTEGER pTimeStamp)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
INT
|
||||||
|
APIENTRY
|
||||||
|
NtGdiGetSpoolMessage( DWORD u1,
|
||||||
|
DWORD u2,
|
||||||
|
DWORD u3,
|
||||||
|
DWORD u4)
|
||||||
|
{
|
||||||
|
/* FIXME the prototypes */
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -204,7 +204,7 @@ NtGdiGetRasterizerCaps 2
|
||||||
NtGdiGetRegionData 3
|
NtGdiGetRegionData 3
|
||||||
NtGdiGetRgnBox 2
|
NtGdiGetRgnBox 2
|
||||||
# NtGdiGetServerMetaFileBits 7
|
# NtGdiGetServerMetaFileBits 7
|
||||||
# NtGdiGetSpoolMessage 4
|
NtGdiGetSpoolMessage 4
|
||||||
# NtGdiGetStats 5
|
# NtGdiGetStats 5
|
||||||
NtGdiGetStockObject 1
|
NtGdiGetStockObject 1
|
||||||
# NtGdiGetStringBitmapW 5
|
# NtGdiGetStringBitmapW 5
|
||||||
|
@ -227,7 +227,7 @@ NtGdiGradientFill 6
|
||||||
NtGdiHfontCreate 5
|
NtGdiHfontCreate 5
|
||||||
# NtGdiIcmBrushInfo 8
|
# NtGdiIcmBrushInfo 8
|
||||||
# NtGdiInit 0
|
# NtGdiInit 0
|
||||||
# NtGdiInitSpool 0
|
NtGdiInitSpool 0
|
||||||
NtGdiIntersectClipRect 5
|
NtGdiIntersectClipRect 5
|
||||||
NtGdiInvertRgn 2
|
NtGdiInvertRgn 2
|
||||||
NtGdiLineTo 3
|
NtGdiLineTo 3
|
||||||
|
@ -249,7 +249,7 @@ NtGdiPolyPolyDraw 5
|
||||||
# NtGdiPolyTextOutW 4
|
# NtGdiPolyTextOutW 4
|
||||||
NtGdiPtInRegion 3
|
NtGdiPtInRegion 3
|
||||||
NtGdiPtVisible 3
|
NtGdiPtVisible 3
|
||||||
# NtGdiQueryFonts 3
|
NtGdiQueryFonts 3
|
||||||
# NtGdiQueryFontAssocInfo 1
|
# NtGdiQueryFontAssocInfo 1
|
||||||
NtGdiRectangle 5
|
NtGdiRectangle 5
|
||||||
NtGdiRectInRegion 2
|
NtGdiRectInRegion 2
|
||||||
|
|
Loading…
Reference in a new issue