Commit 93dcb935 authored by Jinoh Kang's avatar Jinoh Kang Committed by Alexandre Julliard

include: Mark IPersistFolder3::InitializeEx's optional parameters as [unique].

The Windows SDK headers makes it clear that the IBindCtx and ppfti parameters of InitializeEx are optional. Bring Wine's definition in sync with those. Signed-off-by: 's avatarJinoh Kang <jinoh.kang.kr@gmail.com>
parent 6efdef22
......@@ -1395,9 +1395,9 @@ interface IPersistFolder3 : IPersistFolder2
} PERSIST_FOLDER_TARGET_INFO;
HRESULT InitializeEx(
[in] IBindCtx *pbc,
[in, unique] IBindCtx *pbc,
[in] LPCITEMIDLIST pidlRoot,
[in] const PERSIST_FOLDER_TARGET_INFO *ppfti);
[in, unique] const PERSIST_FOLDER_TARGET_INFO *ppfti);
HRESULT GetFolderTargetInfo( [out] PERSIST_FOLDER_TARGET_INFO *ppfti );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment