shell32: Initial stub for SHCreateShellItem. It returns E_NOINTERFACE until shell32 version 6.0 or later.
This commit is contained in:
parent
36a24b93c7
commit
9b0be4980a
|
@ -2363,3 +2363,10 @@ LPITEMIDLIST* _ILCopyCidaToaPidl(LPITEMIDLIST* pidl, const CIDA * cida)
|
||||||
|
|
||||||
return dst;
|
return dst;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI SHCreateShellItem(LPCITEMIDLIST pidlParent,
|
||||||
|
IShellFolder *psfParent, LPCITEMIDLIST pidl, void **ppsi)
|
||||||
|
{
|
||||||
|
FIXME("STUB: %p %p %p %p\n",pidlParent, psfParent, pidl, ppsi);
|
||||||
|
return E_NOINTERFACE;
|
||||||
|
}
|
||||||
|
|
|
@ -328,6 +328,7 @@
|
||||||
@ stdcall SHCreateDirectoryExA(long str ptr)
|
@ stdcall SHCreateDirectoryExA(long str ptr)
|
||||||
@ stdcall SHCreateDirectoryExW(long wstr ptr)
|
@ stdcall SHCreateDirectoryExW(long wstr ptr)
|
||||||
@ stub SHCreateProcessAsUserW
|
@ stub SHCreateProcessAsUserW
|
||||||
|
@ stdcall SHCreateShellItem(ptr ptr ptr ptr)
|
||||||
@ stdcall SHEmptyRecycleBinA(long str long)
|
@ stdcall SHEmptyRecycleBinA(long str long)
|
||||||
@ stdcall SHEmptyRecycleBinW(long wstr long)
|
@ stdcall SHEmptyRecycleBinW(long wstr long)
|
||||||
@ stub SHExtractIconsW
|
@ stub SHExtractIconsW
|
||||||
|
|
Loading…
Reference in New Issue