mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 10:12:00 +00:00
[SHELL32]
- Fix ITEMIDLIST typing in IShellFolder/IShellFolder2 implementations CORE-8441 svn path=/trunk/; revision=63889
This commit is contained in:
parent
f46c30d548
commit
a42c7bc31b
2 changed files with 4 additions and 3 deletions
|
@ -215,7 +215,7 @@ interface IShellFolder : IUnknown
|
|||
[in] LPBC pbcReserved,
|
||||
[in, string] LPOLESTR lpszDisplayName,
|
||||
[out] ULONG *pchEaten,
|
||||
[out] LPITEMIDLIST *ppidl,
|
||||
[out] PIDLIST_RELATIVE *ppidl,
|
||||
[in, out, unique] ULONG *pdwAttributes);
|
||||
|
||||
HRESULT EnumObjects(
|
||||
|
@ -332,8 +332,8 @@ interface IShellFolder2 : IShellFolder
|
|||
HRESULT EnumSearches( [out] IEnumExtraSearch **ppenum );
|
||||
HRESULT GetDefaultColumn( [in] DWORD dwReserved, [out] ULONG *pSort, [out] ULONG *pDisplay );
|
||||
HRESULT GetDefaultColumnState( [in] UINT iColumn, [out] SHCOLSTATEF *pcsFlags );
|
||||
HRESULT GetDetailsEx( [in] LPCITEMIDLIST pidl, [in] const SHCOLUMNID *pscid, [out] VARIANT *pv);
|
||||
HRESULT GetDetailsOf( [in] LPCITEMIDLIST pidl, [in] UINT iColumn, [out] SHELLDETAILS *psd);
|
||||
HRESULT GetDetailsEx( [in] PCUITEMID_CHILD pidl, [in] const SHCOLUMNID *pscid, [out] VARIANT *pv);
|
||||
HRESULT GetDetailsOf( [in] PCUITEMID_CHILD pidl, [in] UINT iColumn, [out] SHELLDETAILS *psd);
|
||||
HRESULT MapColumnToSCID( [in] UINT iColumn, [in] SHCOLUMNID *pscid );
|
||||
}
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ typedef LPITEMIDLIST PITEMID_CHILD;
|
|||
typedef const PITEMID_CHILD PCITEMID_CHILD;
|
||||
typedef LPCITEMIDLIST PCUITEMID_CHILD;
|
||||
typedef LPCITEMIDLIST *PCUITEMID_CHILD_ARRAY;
|
||||
typedef LPITEMIDLIST PIDLIST_RELATIVE;
|
||||
typedef LPCITEMIDLIST PCUIDLIST_RELATIVE;
|
||||
typedef LPITEMIDLIST PIDLIST_ABSOLUTE;
|
||||
typedef LPCITEMIDLIST PCIDLIST_ABSOLUTE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue