advapi32: Add RegRenameKey stub.
Signed-off-by: Shawn M. Chapla <schapla@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b1d78184f0
commit
1e8cfc016e
|
@ -676,7 +676,7 @@
|
|||
@ stdcall -import RegQueryValueExW(long wstr ptr ptr ptr ptr)
|
||||
@ stdcall RegQueryValueW(long wstr ptr ptr)
|
||||
@ stub RegRemapPreDefKey
|
||||
# @ stub RegRenameKey
|
||||
@ stdcall RegRenameKey(long wstr wstr)
|
||||
@ stdcall RegReplaceKeyA(long str str str)
|
||||
@ stdcall RegReplaceKeyW(long wstr wstr wstr)
|
||||
@ stdcall -import RegRestoreKeyA(long str long)
|
||||
|
|
|
@ -507,6 +507,17 @@ LSTATUS WINAPI RegReplaceKeyW( HKEY hkey, LPCWSTR lpSubKey, LPCWSTR lpNewFile,
|
|||
}
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* RegRenameKey [ADVAPI32.@]
|
||||
*
|
||||
*/
|
||||
LSTATUS WINAPI RegRenameKey( HKEY hkey, LPCWSTR lpSubKey, LPCWSTR lpNewName )
|
||||
{
|
||||
FIXME("(%p,%s,%s): stub\n", hkey, debugstr_w(lpSubKey), debugstr_w(lpNewName));
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* RegReplaceKeyA [ADVAPI32.@]
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue