mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 23:18:39 +00:00
[SHLWAPI_WINETEST]
- Fix build until I figure out how to upstream this svn path=/trunk/; revision=69622
This commit is contained in:
parent
66503f6e3f
commit
8fb79dfcc4
1 changed files with 8 additions and 0 deletions
|
@ -2688,14 +2688,22 @@ static HRESULT WINAPI SF_CreateViewObject(IShellFolder *iface,
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI SF_GetAttributesOf(IShellFolder *iface,
|
static HRESULT WINAPI SF_GetAttributesOf(IShellFolder *iface,
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
UINT cidl, PCUITEMID_CHILD_ARRAY idl, SFGAOF *inOut)
|
||||||
|
#else
|
||||||
UINT cidl, LPCITEMIDLIST *idl, SFGAOF *inOut)
|
UINT cidl, LPCITEMIDLIST *idl, SFGAOF *inOut)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
ok(0, "Didn't expect GetAttributesOf\n");
|
ok(0, "Didn't expect GetAttributesOf\n");
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI SF_GetUIObjectOf(IShellFolder *iface,
|
static HRESULT WINAPI SF_GetUIObjectOf(IShellFolder *iface,
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
HWND owner, UINT cidl, PCUITEMID_CHILD_ARRAY idls, REFIID riid, UINT *inOut,
|
||||||
|
#else
|
||||||
HWND owner, UINT cidl, LPCITEMIDLIST *idls, REFIID riid, UINT *inOut,
|
HWND owner, UINT cidl, LPCITEMIDLIST *idls, REFIID riid, UINT *inOut,
|
||||||
|
#endif
|
||||||
void **out)
|
void **out)
|
||||||
{
|
{
|
||||||
ok(0, "Didn't expect GetUIObjectOf\n");
|
ok(0, "Didn't expect GetUIObjectOf\n");
|
||||||
|
|
Loading…
Reference in a new issue