mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
Author: Aric Stewart <aric at codeweavers.com>
Date: Tue Jan 20 13:04:50 2009 -0600 shell32: Initial stub for SHCreateShellItem. It returns E_NOINTERFACE until shell32 version 6.0 or later. svn path=/trunk/; revision=39008
This commit is contained in:
parent
183869c16c
commit
101c983729
2 changed files with 8 additions and 0 deletions
|
@ -2392,3 +2392,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;
|
||||||
|
}
|
||||||
|
|
|
@ -331,6 +331,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 a new issue