ole32: Add stub for OleConvertIStorageToOLESTREAMEx.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52298 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Esme Povirk <esme@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6090276b3e
commit
18e331fd63
|
@ -187,7 +187,7 @@
|
|||
@ stdcall Ole32DllGetClassObject(ptr ptr ptr)
|
||||
@ stdcall OleBuildVersion()
|
||||
@ stdcall OleConvertIStorageToOLESTREAM(ptr ptr)
|
||||
@ stub OleConvertIStorageToOLESTREAMEx
|
||||
@ stdcall OleConvertIStorageToOLESTREAMEx(ptr long long long long ptr ptr)
|
||||
@ stdcall OleConvertOLESTREAMToIStorage(ptr ptr ptr)
|
||||
@ stub OleConvertOLESTREAMToIStorageEx
|
||||
@ stdcall OleCreate(ptr ptr long ptr ptr ptr ptr)
|
||||
|
|
|
@ -10570,6 +10570,17 @@ enum stream_1ole_flags {
|
|||
OleStream_Convert = 0x00000004
|
||||
};
|
||||
|
||||
/*************************************************************************
|
||||
* OleConvertIStorageToOLESTREAMEx [OLE32.@]
|
||||
*/
|
||||
HRESULT WINAPI OleConvertIStorageToOLESTREAMEx ( LPSTORAGE stg, CLIPFORMAT cf, LONG width, LONG height,
|
||||
DWORD size, LPSTGMEDIUM medium, LPOLESTREAM olestream )
|
||||
{
|
||||
FIXME("%p %x %d %d %d %p %p stub\n", stg, cf, width, height, size, medium, olestream);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetConvertStg (OLE32.@)
|
||||
*/
|
||||
|
|
|
@ -161,6 +161,8 @@ typedef struct _OLESTREAM {
|
|||
|
||||
HRESULT WINAPI OleConvertOLESTREAMToIStorage( LPOLESTREAM lpolestream, LPSTORAGE pstg, const DVTARGETDEVICE* ptd);
|
||||
HRESULT WINAPI OleConvertIStorageToOLESTREAM( LPSTORAGE pstg, LPOLESTREAM lpolestream);
|
||||
HRESULT WINAPI OleConvertIStorageToOLESTREAMEx( LPSTORAGE stg, CLIPFORMAT cf, LONG width, LONG height,
|
||||
DWORD size, LPSTGMEDIUM medium, LPOLESTREAM olestream );
|
||||
|
||||
HRESULT WINAPI OleDoAutoConvert( LPSTORAGE pStg, LPCLSID pClsidNew );
|
||||
HRESULT WINAPI OleGetAutoConvert( REFCLSID clsidOld, LPCLSID pClsidNew );
|
||||
|
|
Loading…
Reference in New Issue