Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1e8cfc01
Commit
1e8cfc01
authored
Jul 01, 2020
by
Shawn M. Chapla
Committed by
Alexandre Julliard
Jul 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add RegRenameKey stub.
Signed-off-by:
Shawn M. Chapla
<
schapla@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b1d78184
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
registry.c
dlls/advapi32/registry.c
+11
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
1e8cfc01
...
...
@@ -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)
...
...
dlls/advapi32/registry.c
View file @
1e8cfc01
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment