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
049bbe3f
Commit
049bbe3f
authored
Sep 11, 2009
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Sep 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: RtlpNtQueryValueKey takes 5 parameters.
parent
8c279bb8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
reg.c
dlls/ntdll/reg.c
+1
-1
reg.c
dlls/ntdll/tests/reg.c
+2
-2
No files found.
dlls/ntdll/reg.c
View file @
049bbe3f
...
...
@@ -530,7 +530,7 @@ NTSTATUS WINAPI NtQueryValueKey( HANDLE handle, const UNICODE_STRING *name,
*
*/
NTSTATUS
WINAPI
RtlpNtQueryValueKey
(
HANDLE
handle
,
ULONG
*
result_type
,
PBYTE
dest
,
DWORD
*
result_len
)
DWORD
*
result_len
,
void
*
unknown
)
{
KEY_VALUE_PARTIAL_INFORMATION
*
info
;
UNICODE_STRING
name
;
...
...
dlls/ntdll/tests/reg.c
View file @
049bbe3f
...
...
@@ -140,7 +140,7 @@ static NTSTATUS (WINAPI * pRtlUnicodeStringToAnsiString)(PSTRING, PUNICODE_STRIN
static
NTSTATUS
(
WINAPI
*
pRtlFreeHeap
)(
PVOID
,
ULONG
,
PVOID
);
static
LPVOID
(
WINAPI
*
pRtlAllocateHeap
)(
PVOID
,
ULONG
,
ULONG
);
static
NTSTATUS
(
WINAPI
*
pRtlZeroMemory
)(
PVOID
,
ULONG
);
static
NTSTATUS
(
WINAPI
*
pRtlpNtQueryValueKey
)(
HANDLE
,
ULONG
*
,
PBYTE
,
DWORD
*
);
static
NTSTATUS
(
WINAPI
*
pRtlpNtQueryValueKey
)(
HANDLE
,
ULONG
*
,
PBYTE
,
DWORD
*
,
void
*
);
static
HMODULE
hntdll
=
0
;
static
int
CurrentTest
=
0
;
...
...
@@ -593,7 +593,7 @@ static void test_RtlpNtQueryValueKey(void)
{
NTSTATUS
status
;
status
=
pRtlpNtQueryValueKey
(
NULL
,
NULL
,
NULL
,
NULL
);
status
=
pRtlpNtQueryValueKey
(
NULL
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
status
==
STATUS_INVALID_HANDLE
,
"Expected STATUS_INVALID_HANDLE, got: 0x%08x
\n
"
,
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