Added GetConvertStg stub.

This commit is contained in:
Marcus Meissner 2001-04-09 18:33:03 +00:00 committed by Alexandre Julliard
parent a1d0bc3914
commit 826c1af100
2 changed files with 6 additions and 1 deletions

View File

@ -79,7 +79,7 @@ debug_channels (ole relay storage)
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

View File

@ -6969,3 +6969,8 @@ HRESULT WINAPI OleConvertIStorageToOLESTREAM (
return hRes;
}
HRESULT WINAPI GetConvertStg(LPGUID guid) {
FIXME("(%s), unimplemented stub!\n",debugstr_guid(guid));
return E_FAIL;
}