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
449dfadf
Commit
449dfadf
authored
Oct 12, 2006
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Implement SHRegQueryValueA with RegQueryValueA.
parent
ff82ce24
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
shell32.spec
dlls/shell32/shell32.spec
+1
-1
shellreg.c
dlls/shell32/shellreg.c
+10
-0
No files found.
dlls/shell32/shell32.spec
View file @
449dfadf
...
...
@@ -215,7 +215,7 @@
505 stdcall SHRegCloseKey (long)
506 stdcall SHRegOpenKeyA (long str long)
507 stdcall SHRegOpenKeyW (long wstr long)
508 st
ub SHRegQueryValueA
508 st
dcall SHRegQueryValueA(long str ptr ptr)
509 stdcall SHRegQueryValueExA(long str ptr ptr ptr ptr)
510 stdcall SHRegQueryValueW (long long long long)
511 stdcall SHRegQueryValueExW (long wstr ptr ptr ptr ptr)
...
...
dlls/shell32/shellreg.c
View file @
449dfadf
...
...
@@ -68,6 +68,16 @@ HRESULT WINAPI SHRegOpenKeyW (
}
/*************************************************************************
* SHRegQueryValueA [SHELL32.508]
*
*/
HRESULT
WINAPI
SHRegQueryValueA
(
HKEY
hkey
,
LPSTR
lpSubKey
,
LPSTR
lpValue
,
LPDWORD
lpcbValue
)
{
TRACE
(
"(%p %s %p %p)
\n
"
,
hkey
,
debugstr_a
(
lpSubKey
),
lpValue
,
lpcbValue
);
return
RegQueryValueA
(
hkey
,
lpSubKey
,
lpValue
,
(
LONG
*
)
lpcbValue
);
}
/*************************************************************************
* SHRegQueryValueExA [SHELL32.509]
*
*/
...
...
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