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
3e35bf38
Commit
3e35bf38
authored
May 11, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Forward SHRegDuplicateHKey() to shcore.dll.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c7c91b93
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
22 deletions
+3
-22
Makefile.in
dlls/shcore/Makefile.in
+1
-0
Makefile.in
dlls/shlwapi/Makefile.in
+1
-1
reg.c
dlls/shlwapi/reg.c
+0
-20
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shcore/Makefile.in
View file @
3e35bf38
MODULE
=
shcore.dll
MODULE
=
shcore.dll
IMPORTLIB
=
shcore
IMPORTS
=
user32 gdi32 ole32 advapi32
IMPORTS
=
user32 gdi32 ole32 advapi32
EXTRADLLFLAGS
=
-mno-cygwin
EXTRADLLFLAGS
=
-mno-cygwin
...
...
dlls/shlwapi/Makefile.in
View file @
3e35bf38
EXTRADEFS
=
-D_SHLWAPI_
EXTRADEFS
=
-D_SHLWAPI_
MODULE
=
shlwapi.dll
MODULE
=
shlwapi.dll
IMPORTLIB
=
shlwapi
IMPORTLIB
=
shlwapi
IMPORTS
=
uuid user32 gdi32 advapi32 kernelbase
IMPORTS
=
uuid
shcore
user32 gdi32 advapi32 kernelbase
DELAYIMPORTS
=
userenv oleaut32 ole32 comctl32 comdlg32 mpr mlang urlmon shell32 winmm version
DELAYIMPORTS
=
userenv oleaut32 ole32 comctl32 comdlg32 mpr mlang urlmon shell32 winmm version
EXTRADLLFLAGS
=
-mno-cygwin
EXTRADLLFLAGS
=
-mno-cygwin
...
...
dlls/shlwapi/reg.c
View file @
3e35bf38
...
@@ -932,26 +932,6 @@ BOOL WINAPI UnregisterExtensionForMIMETypeW(LPCWSTR lpszType)
...
@@ -932,26 +932,6 @@ BOOL WINAPI UnregisterExtensionForMIMETypeW(LPCWSTR lpszType)
return
TRUE
;
return
TRUE
;
}
}
/*************************************************************************
* SHRegDuplicateHKey [SHLWAPI.@]
*
* Create a duplicate of a registry handle.
*
* PARAMS
* hKey [I] key to duplicate.
*
* RETURNS
* A new handle pointing to the same key as hKey.
*/
HKEY
WINAPI
SHRegDuplicateHKey
(
HKEY
hKey
)
{
HKEY
newKey
=
0
;
RegOpenKeyExA
(
hKey
,
0
,
0
,
MAXIMUM_ALLOWED
,
&
newKey
);
TRACE
(
"new key is %p
\n
"
,
newKey
);
return
newKey
;
}
/*
/*
* The following functions are ORDINAL ONLY:
* The following functions are ORDINAL ONLY:
*/
*/
...
...
dlls/shlwapi/shlwapi.spec
View file @
3e35bf38
...
@@ -720,7 +720,7 @@
...
@@ -720,7 +720,7 @@
@ stdcall SHRegDeleteEmptyUSKeyW(long wstr long)
@ stdcall SHRegDeleteEmptyUSKeyW(long wstr long)
@ stdcall SHRegDeleteUSValueA(long str long)
@ stdcall SHRegDeleteUSValueA(long str long)
@ stdcall SHRegDeleteUSValueW(long wstr long)
@ stdcall SHRegDeleteUSValueW(long wstr long)
@ stdcall
SHRegDuplicateHKey
(long)
@ stdcall
-import SHRegDuplicateHKey
(long)
@ stdcall SHRegEnumUSKeyA(long long str ptr long)
@ stdcall SHRegEnumUSKeyA(long long str ptr long)
@ stdcall SHRegEnumUSKeyW(long long wstr ptr long)
@ stdcall SHRegEnumUSKeyW(long long wstr ptr long)
@ stdcall SHRegEnumUSValueA(long long ptr ptr ptr ptr ptr long)
@ stdcall SHRegEnumUSValueA(long long ptr ptr ptr ptr ptr long)
...
...
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