ole32: Rename StorageImpl_SetStateBits to StorageBaseImpl_SetStateBits.
This commit is contained in:
parent
17236668c9
commit
7973904d56
|
@ -2119,13 +2119,13 @@ static HRESULT WINAPI StorageBaseImpl_SetElementTimes(
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* SetStateBits (IStorage)
|
* SetStateBits (IStorage)
|
||||||
*/
|
*/
|
||||||
static HRESULT WINAPI StorageImpl_SetStateBits(
|
static HRESULT WINAPI StorageBaseImpl_SetStateBits(
|
||||||
IStorage* iface,
|
IStorage* iface,
|
||||||
DWORD grfStateBits,/* [in] */
|
DWORD grfStateBits,/* [in] */
|
||||||
DWORD grfMask) /* [in] */
|
DWORD grfMask) /* [in] */
|
||||||
{
|
{
|
||||||
StorageImpl* const This = (StorageImpl*)iface;
|
StorageBaseImpl* const This = (StorageBaseImpl*)iface;
|
||||||
This->base.stateBits = (This->base.stateBits & ~grfMask) | (grfStateBits & grfMask);
|
This->stateBits = (This->stateBits & ~grfMask) | (grfStateBits & grfMask);
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2150,7 +2150,7 @@ static const IStorageVtbl Storage32Impl_Vtbl =
|
||||||
StorageBaseImpl_RenameElement,
|
StorageBaseImpl_RenameElement,
|
||||||
StorageBaseImpl_SetElementTimes,
|
StorageBaseImpl_SetElementTimes,
|
||||||
StorageBaseImpl_SetClass,
|
StorageBaseImpl_SetClass,
|
||||||
StorageImpl_SetStateBits,
|
StorageBaseImpl_SetStateBits,
|
||||||
StorageImpl_Stat
|
StorageImpl_Stat
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3958,7 +3958,7 @@ static const IStorageVtbl Storage32InternalImpl_Vtbl =
|
||||||
StorageBaseImpl_RenameElement,
|
StorageBaseImpl_RenameElement,
|
||||||
StorageBaseImpl_SetElementTimes,
|
StorageBaseImpl_SetElementTimes,
|
||||||
StorageBaseImpl_SetClass,
|
StorageBaseImpl_SetClass,
|
||||||
StorageImpl_SetStateBits,
|
StorageBaseImpl_SetStateBits,
|
||||||
StorageBaseImpl_Stat
|
StorageBaseImpl_Stat
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue