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:
Shawn M. Chapla 2020-07-01 19:34:44 -04:00 committed by Alexandre Julliard
parent b1d78184f0
commit 1e8cfc016e
2 changed files with 12 additions and 1 deletions

View File

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

View File

@ -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.@]
*