shlwapi: Implement stub for SHCreatePropertyBagOnRegKey.

This commit is contained in:
Owen Rudge 2009-09-02 16:37:53 +01:00 committed by Alexandre Julliard
parent dbac3f1711
commit 3006cba5bd
2 changed files with 27 additions and 1 deletions

View File

@ -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;
}

View File

@ -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