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
a7545791
Commit
a7545791
authored
Oct 16, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Added FIXME about an unsupported argument and initialize its value.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5935e950
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
registry.c
dlls/advapi32/registry.c
+12
-0
No files found.
dlls/advapi32/registry.c
View file @
a7545791
...
...
@@ -902,6 +902,12 @@ LSTATUS WINAPI RegQueryInfoKeyW( HKEY hkey, LPWSTR class, LPDWORD class_len, LPD
if
(
max_data
)
*
max_data
=
info
->
MaxValueDataLen
;
if
(
modif
)
*
modif
=
*
(
FILETIME
*
)
&
info
->
LastWriteTime
;
if
(
security
)
{
FIXME
(
"security argument not supported.
\n
"
);
*
security
=
0
;
}
done:
if
(
buf_ptr
!=
buffer
)
heap_free
(
buf_ptr
);
return
RtlNtStatusToDosError
(
status
);
...
...
@@ -1091,6 +1097,12 @@ LSTATUS WINAPI RegQueryInfoKeyA( HKEY hkey, LPSTR class, LPDWORD class_len, LPDW
if
(
max_data
)
*
max_data
=
info
->
MaxValueDataLen
;
if
(
modif
)
*
modif
=
*
(
FILETIME
*
)
&
info
->
LastWriteTime
;
if
(
security
)
{
FIXME
(
"security argument not supported.
\n
"
);
*
security
=
0
;
}
done:
if
(
buf_ptr
!=
buffer
)
heap_free
(
buf_ptr
);
return
RtlNtStatusToDosError
(
status
);
...
...
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