Module: wine Branch: master Commit: e36370f04b036b6e0a4a5e5f6b60d3ca6cc0ad45 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e36370f04b036b6e0a4a5e5f6b...
Author: Austin English austinenglish@gmail.com Date: Sat Feb 12 15:13:14 2011 -0800
gdi32: Add a stub for GdiDrawStream.
---
dlls/gdi32/gdi32.spec | 2 +- dlls/gdi32/painting.c | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/dlls/gdi32/gdi32.spec b/dlls/gdi32/gdi32.spec index 4901e13..79c6f3c 100644 --- a/dlls/gdi32/gdi32.spec +++ b/dlls/gdi32/gdi32.spec @@ -171,7 +171,7 @@ # @ stub GdiDeleteSpoolFileHandle # @ stub GdiDescribePixelFormat @ stub GdiDllInitialize -# @ stub GdiDrawStream +@ stdcall GdiDrawStream(long long ptr) # @ stub GdiEndDocEMF # @ stub GdiEndPageEMF @ stdcall GdiEntry13() diff --git a/dlls/gdi32/painting.c b/dlls/gdi32/painting.c index 1bcdc23..991c326 100644 --- a/dlls/gdi32/painting.c +++ b/dlls/gdi32/painting.c @@ -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; +}