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
450bc798
Commit
450bc798
authored
May 09, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
May 09, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More debug output for RegQueryInfoKey.
parent
c6c04836
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
registry.c
misc/registry.c
+10
-2
No files found.
misc/registry.c
View file @
450bc798
...
...
@@ -3502,7 +3502,11 @@ DWORD WINAPI RegQueryInfoKeyW( HKEY hkey, LPWSTR lpszClass,
int
nrofkeys
,
maxsubkey
,
maxclass
,
maxvname
,
maxvdata
;
int
i
;
TRACE_
(
reg
)(
"(%x,%p,...)
\n
"
,
hkey
,
lpszClass
);
TRACE_
(
reg
)(
"(%x,%p,%ld,%p,%p,%p,%p,%p,%p,%p,%p)
\n
"
,
hkey
,
lpszClass
,
lpcchClass
?*
lpcchClass
:
0
,
lpdwReserved
,
lpcSubKeys
,
lpcchMaxSubkey
,
lpcValues
,
lpcchMaxValueName
,
lpccbMaxValueData
,
lpcbSecurityDescriptor
,
ft
);
lpkey
=
lookup_hkey
(
hkey
);
if
(
!
lpkey
)
return
ERROR_INVALID_HANDLE
;
...
...
@@ -3580,7 +3584,11 @@ DWORD WINAPI RegQueryInfoKeyA( HKEY hkey, LPSTR lpszClass, LPDWORD lpcchClass,
LPWSTR
lpszClassW
=
NULL
;
DWORD
ret
;
TRACE_
(
reg
)(
"(%x,%p,%p......)
\n
"
,
hkey
,
lpszClass
,
lpcchClass
);
TRACE_
(
reg
)(
"(%x,%p,%ld,%p,%p,%p,%p,%p,%p,%p,%p)
\n
"
,
hkey
,
lpszClass
,
lpcchClass
?*
lpcchClass
:
0
,
lpdwReserved
,
lpcSubKeys
,
lpcchMaxSubkey
,
lpcValues
,
lpcchMaxValueName
,
lpccbMaxValueData
,
lpcbSecurityDescriptor
,
ft
);
if
(
lpszClass
)
{
if
(
lpcchClass
)
{
lpszClassW
=
(
LPWSTR
)
xmalloc
((
*
lpcchClass
)
*
2
);
...
...
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