[PATCH] OleLoadPictureEx

gerard patel gerard.patel at asi.fr
Mon Apr 9 16:39:24 CDT 2001


Stub

ChangeLog:

	* dlls/oleaut32/oleaut32.spec, olepicture.c
                  Stub for oleloadpictureex
-------------- next part --------------
Index: dlls/oleaut32/oleaut32.spec
===================================================================
RCS file: /home/wine/wine/dlls/oleaut32/oleaut32.spec,v
retrieving revision 1.25
diff -u -r1.25 oleaut32.spec
--- dlls/oleaut32/oleaut32.spec	2001/03/19 19:17:27	1.25
+++ dlls/oleaut32/oleaut32.spec	2001/04/09 21:22:56
@@ -301,7 +301,7 @@
 422 stub OleLoadPictureFile
 423 stub OleSavePictureFile
 424 stub OleLoadPicturePath
-425 stub OleLoadPictureEx
+425 stdcall OleLoadPictureEx(ptr long long long long long long ptr) OleLoadPictureEx
 
 #Win98 and higher (NT4.0sp4)
 426 stub GetRecordInfoFromGuids # stdcall (ptr long long long ptr ptr)
Index: dlls/oleaut32/olepicture.c
===================================================================
RCS file: /home/wine/wine/dlls/oleaut32/olepicture.c,v
retrieving revision 1.5
diff -u -r1.5 olepicture.c
--- dlls/oleaut32/olepicture.c	2001/01/26 20:43:44	1.5
+++ dlls/oleaut32/olepicture.c	2001/04/09 21:22:57
@@ -746,4 +746,15 @@
 	lpstream, lSize, fRunmode, reed, ppvObj);
   return S_OK;
 }
+
+/***********************************************************************
+ * OleLoadPictureEx
+ */
+HRESULT WINAPI OleLoadPictureEx( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
+		            REFIID reed, DWORD xsiz, DWORD ysiz, DWORD flags, LPVOID *ppvObj )
+{
+  FIXME("(%p,%ld,%d,%p,%lx,%lx,%lx,%p), not implemented\n",
+	lpstream, lSize, fRunmode, reed, xsiz, ysiz, flags, ppvObj);
+  return S_OK;
+}
  
-------------- next part --------------



More information about the wine-patches mailing list