Commit 9e7c8e06 authored by Owen Rudge's avatar Owen Rudge Committed by Alexandre Julliard

shlwapi: Implement stub for SHGetViewStatePropertyBag.

parent 3006cba5
......@@ -4595,3 +4595,30 @@ HRESULT WINAPI SHCreatePropertyBagOnRegKey (HKEY hKey, LPCWSTR subkey,
return E_NOTIMPL;
}
/***********************************************************************
* SHGetViewStatePropertyBag [SHLWAPI.515]
*
* Retrieves a property bag in which the view state information of a folder
* can be stored.
*
* PARAMS
* pidl [I] PIDL of the folder requested
* bag_name [I] Name of the property bag requested
* flags [I] Optional flags
* riid [I] IID of requested property bag interface
* ppv [O] Address to receive pointer to the new interface
*
* RETURNS
* success: S_OK
* failure: error code
*
*/
HRESULT WINAPI SHGetViewStatePropertyBag(LPCITEMIDLIST pidl, LPWSTR bag_name,
DWORD flags, REFIID riid, void **ppv)
{
FIXME("%p %s %d %s %p STUB\n", pidl, debugstr_w(bag_name), flags,
debugstr_guid(riid), ppv);
return E_NOTIMPL;
}
......@@ -508,7 +508,7 @@
512 stub -noname IStream_ReadPidl
513 stub -noname IStream_WritePidl
514 stdcall -noname IUnknown_ProfferService(ptr ptr ptr ptr)
515 stub -noname SHGetViewStatePropertyBag
515 stdcall -noname SHGetViewStatePropertyBag(ptr wstr long ptr ptr)
516 stdcall -noname SKGetValueW(long wstr wstr long long long)
517 stub -noname SKSetValueW
518 stub -noname SKDeleteValueW
......
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