Commit 382d5f76 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

gdi32: Use ntgdi names for stubs in painting.c.

parent 27532568
......@@ -181,9 +181,9 @@
@ stub GdiDeleteLocalDC
@ stub GdiDeleteLocalObject
# @ stub GdiDeleteSpoolFileHandle
@ stdcall GdiDescribePixelFormat(long long long ptr)
@ stdcall GdiDescribePixelFormat(long long long ptr) NtGdiDescribePixelFormat
@ stdcall GdiDllInitialize(ptr long ptr)
@ stdcall GdiDrawStream(long long ptr)
@ stdcall GdiDrawStream(long long ptr) NtGdiDrawStream
# @ stub GdiEndDocEMF
# @ stub GdiEndPageEMF
@ stdcall GdiEntry13()
......@@ -230,7 +230,7 @@
@ stub GdiSetServerAttr
# @ stub GdiStartDocEMF
# @ stub GdiStartPageEMF
@ stdcall GdiSwapBuffers(long)
@ stdcall GdiSwapBuffers(long) NtGdiSwapBuffers
@ stdcall GdiTransparentBlt(long long long long long long long long long long long)
# @ stub GdiValidateHandle
@ stub GdiWinWatchClose
......
......@@ -453,11 +453,9 @@ BOOL WINAPI NtGdiSetPixelFormat( HDC hdc, INT format )
/******************************************************************************
* GdiDescribePixelFormat [GDI32.@]
*
* Probably not the correct semantics, it's supposed to be an internal backend for DescribePixelFormat.
* NtGdiDescribePixelFormat (win32u.@)
*/
INT WINAPI GdiDescribePixelFormat( HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR *descr )
INT WINAPI NtGdiDescribePixelFormat( HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR *descr )
{
FIXME( "(%p,%d,%d,%p): stub\n", hdc, format, size, descr );
return 0;
......@@ -465,11 +463,9 @@ INT WINAPI GdiDescribePixelFormat( HDC hdc, INT format, UINT size, PIXELFORMATDE
/******************************************************************************
* GdiSwapBuffers [GDI32.@]
*
* Probably not the correct semantics, it's supposed to be an internal backend for SwapBuffers.
* NtGdiSwapBuffers (win32u.@)
*/
BOOL WINAPI GdiSwapBuffers( HDC hdc )
BOOL WINAPI NtGdiSwapBuffers( HDC hdc )
{
FIXME( "(%p): stub\n", hdc );
return FALSE;
......@@ -993,10 +989,9 @@ BOOL WINAPI GdiGradientFill( HDC hdc, TRIVERTEX *vert_array, ULONG nvert,
}
/******************************************************************************
* GdiDrawStream (GDI32.@)
*
* NtGdiDrawStream (win32u.@)
*/
BOOL WINAPI GdiDrawStream( HDC hdc, ULONG in, void * pvin )
BOOL WINAPI NtGdiDrawStream( HDC hdc, ULONG in, void *pvin )
{
FIXME("stub: %p, %d, %p\n", hdc, in, pvin);
return FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment