PATCH: ole getconvertstg stub

Marcus Meissner marcus at jet.franken.de
Sat Apr 7 07:29:54 CDT 2001


Hi,

Changelog:
	added GetConvertStg stub

Index: dlls/ole32/ole32.spec
===================================================================
RCS file: /home/wine/wine/dlls/ole32/ole32.spec,v
retrieving revision 1.26
diff -u -r1.26 ole32.spec
--- dlls/ole32/ole32.spec	2000/12/19 03:38:05	1.26
+++ dlls/ole32/ole32.spec	2001/04/07 13:13:49
@@ -79,7 +79,7 @@
  65 stdcall DoDragDrop(ptr ptr long ptr) DoDragDrop
  66 stub EnableHookObject
  67 stdcall GetClassFile(ptr ptr) GetClassFile
- 68 stub GetConvertStg
+ 68 stdcall GetConvertStg(ptr) GetConvertStg
  69 stub GetDocumentBitStg
  70 stdcall GetHGlobalFromILockBytes(ptr ptr) GetHGlobalFromILockBytes
  71 stdcall GetHGlobalFromStream(ptr ptr) GetHGlobalFromStream
Index: dlls/ole32/storage32.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/storage32.c,v
retrieving revision 1.20
diff -u -r1.20 storage32.c
--- dlls/ole32/storage32.c	2001/03/31 00:51:54	1.20
+++ dlls/ole32/storage32.c	2001/04/07 13:14:00
@@ -6969,3 +6969,8 @@
 
     return hRes;
 }
+
+HRESULT WINAPI GetConvertStg(LPGUID guid) {
+    FIXME("(%s), unimplemented stub!\n",debugstr_guid(guid));
+    return E_FAIL;
+}




More information about the wine-patches mailing list