Commit 1e8cfc01 authored by Shawn M. Chapla's avatar Shawn M. Chapla Committed by Alexandre Julliard

advapi32: Add RegRenameKey stub.

parent b1d78184
......@@ -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)
......
......@@ -508,6 +508,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.@]
*
* See RegReplaceKeyW.
......
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