Implement StgCreatePropSetStg.
This commit is contained in:
parent
b5c358bba7
commit
01239efa4a
|
@ -233,6 +233,7 @@
|
|||
@ stub SNB_UserUnmarshal
|
||||
@ stdcall StgCreateDocfile(wstr long long ptr)
|
||||
@ stdcall StgCreateDocfileOnILockBytes(ptr long long ptr)
|
||||
@ stdcall StgCreatePropSetStg(ptr long ptr)
|
||||
@ stdcall StgCreateStorageEx(wstr long long long ptr ptr ptr ptr)
|
||||
@ stub StgGetIFillLockBytesOnFile
|
||||
@ stub StgGetIFillLockBytesOnILockBytes
|
||||
|
|
|
@ -5600,6 +5600,23 @@ HRESULT WINAPI StgCreateStorageEx(const WCHAR* pwcsName, DWORD grfMode, DWORD st
|
|||
return STG_E_UNIMPLEMENTEDFUNCTION;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* StgCreatePropSetStg [OLE32.@]
|
||||
*/
|
||||
HRESULT WINAPI StgCreatePropSetStg(IStorage *pstg, DWORD reserved,
|
||||
IPropertySetStorage **ppPropSetStg)
|
||||
{
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("(%p, 0x%lx, %p): stub\n", pstg, reserved, ppPropSetStg);
|
||||
if (reserved)
|
||||
hr = STG_E_INVALIDPARAMETER;
|
||||
else
|
||||
hr = StorageBaseImpl_QueryInterface(pstg, &IID_IPropertySetStorage,
|
||||
(void**)ppPropSetStg);
|
||||
return hr;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* StgOpenStorage [OLE32.@]
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue