Commit 3006cba5 authored by Owen Rudge's avatar Owen Rudge Committed by Alexandre Julliard

shlwapi: Implement stub for SHCreatePropertyBagOnRegKey.

parent dbac3f17
......@@ -4569,3 +4569,29 @@ free_sids:
return psd;
}
/***********************************************************************
* SHCreatePropertyBagOnRegKey [SHLWAPI.471]
*
* Creates a property bag from a registry key
*
* PARAMS
* hKey [I] Handle to the desired registry key
* subkey [I] Name of desired subkey, or NULL to open hKey directly
* grfMode [I] Optional flags
* riid [I] IID of requested property bag interface
* ppv [O] Address to receive pointer to the new interface
*
* RETURNS
* success: 0
* failure: error code
*
*/
HRESULT WINAPI SHCreatePropertyBagOnRegKey (HKEY hKey, LPCWSTR subkey,
DWORD grfMode, REFIID riid, void **ppv)
{
FIXME("%p %s %d %s %p STUB\n", hKey, debugstr_w(subkey), grfMode,
debugstr_guid(riid), ppv);
return E_NOTIMPL;
}
......@@ -468,7 +468,7 @@
468 stub -noname RunIndirectRegCommand
469 stub -noname RunRegCommand
470 stub -noname IUnknown_ProfferServiceOld
471 stub -noname SHCreatePropertyBagOnRegKey
471 stdcall -noname SHCreatePropertyBagOnRegKey(long wstr long ptr ptr)
472 stub -noname SHCreatePropertyBagOnProfileSelection
473 stub -noname SHGetIniStringUTF7W
474 stub -noname SHSetIniStringUTF7W
......
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