gdi32: Add a stub for GdiDrawStream.
authorAustin English <austinenglish@gmail.com>
Sat, 12 Feb 2011 23:13:14 +0000 (15:13 -0800)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 14 Feb 2011 12:33:29 +0000 (13:33 +0100)
dlls/gdi32/gdi32.spec
dlls/gdi32/painting.c

index 4901e13b1db9b5735627c5af1f142384c8d1d49d..79c6f3c5e023120da7af97719111f2e37a800ed4 100644 (file)
 # @ stub GdiDeleteSpoolFileHandle
 # @ stub GdiDescribePixelFormat
 @ stub GdiDllInitialize
-# @ stub GdiDrawStream
+@ stdcall GdiDrawStream(long long ptr)
 # @ stub GdiEndDocEMF
 # @ stub GdiEndPageEMF
 @ stdcall GdiEntry13()
index 1bcdc23f52474a1427b20bf0cab84ac41bf6fd6c..991c326caf29ba61ddd107ed5d5929a074c76008 100644 (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;
+}