mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
26 lines
768 B
C
26 lines
768 B
C
|
|
||
|
#include "advapi32_vista.h"
|
||
|
|
||
|
/* Taken from Wine advapi32/registry.c */
|
||
|
|
||
|
/******************************************************************************
|
||
|
* RegSetKeyValueW [ADVAPI32.@]
|
||
|
*/
|
||
|
LONG WINAPI RegSetKeyValueW( HKEY hkey, LPCWSTR subkey, LPCWSTR name, DWORD type, const void *data, DWORD len )
|
||
|
{
|
||
|
HKEY hsubkey = NULL;
|
||
|
DWORD ret;
|
||
|
|
||
|
//TRACE("(%p,%s,%s,%d,%p,%d)\n", hkey, debugstr_w(subkey), debugstr_w(name), type, data, len );
|
||
|
|
||
|
if (subkey && subkey[0]) /* need to create the subkey */
|
||
|
{
|
||
|
if ((ret = RegCreateKeyW( hkey, subkey, &hsubkey )) != ERROR_SUCCESS) return ret;
|
||
|
hkey = hsubkey;
|
||
|
}
|
||
|
|
||
|
ret = RegSetValueExW( hkey, name, 0, type, (const BYTE*)data, len );
|
||
|
if (hsubkey) RegCloseKey( hsubkey );
|
||
|
return ret;
|
||
|
}
|