gdi32: Add a stub for GdiDrawStream.

This commit is contained in:
Austin English 2011-02-12 15:13:14 -08:00 committed by Alexandre Julliard
parent 9896d41ced
commit e36370f04b
2 changed files with 11 additions and 1 deletions

View File

@ -171,7 +171,7 @@
# @ stub GdiDeleteSpoolFileHandle
# @ stub GdiDescribePixelFormat
@ stub GdiDllInitialize
# @ stub GdiDrawStream
@ stdcall GdiDrawStream(long long ptr)
# @ stub GdiEndDocEMF
# @ stub GdiEndPageEMF
@ stdcall GdiEntry13()

View File

@ -1383,3 +1383,13 @@ BOOL WINAPI GdiGradientFill( HDC hdc, TRIVERTEX *vert_array, ULONG nvert,
return TRUE;
}
/******************************************************************************
* GdiDrawStream (GDI32.@)
*
*/
BOOL WINAPI GdiDrawStream( HDC hdc, ULONG in, void * pvin )
{
FIXME("stub: %p, %d, %p\n", hdc, in, pvin);
return FALSE;
}