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
11412337
Commit
11412337
authored
Jan 04, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 05, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add NtQuerySystemInformationEx() stub.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c9c138f5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
3 deletions
+20
-3
nt.c
dlls/ntdll/nt.c
+12
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-0
info.c
dlls/ntdll/tests/info.c
+5
-3
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/nt.c
View file @
11412337
...
@@ -2172,6 +2172,18 @@ NTSTATUS WINAPI NtQuerySystemInformation(
...
@@ -2172,6 +2172,18 @@ NTSTATUS WINAPI NtQuerySystemInformation(
}
}
/******************************************************************************
/******************************************************************************
* NtQuerySystemInformationEx [NTDLL.@]
* ZwQuerySystemInformationEx [NTDLL.@]
*/
NTSTATUS
WINAPI
NtQuerySystemInformationEx
(
SYSTEM_INFORMATION_CLASS
SystemInformationClass
,
void
*
Query
,
ULONG
QueryLength
,
void
*
SystemInformation
,
ULONG
Length
,
ULONG
*
ResultLength
)
{
FIXME
(
"(0x%08x,%p,%u,%p,%u,%p) stub
\n
"
,
SystemInformationClass
,
Query
,
QueryLength
,
SystemInformation
,
Length
,
ResultLength
);
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* NtSetSystemInformation [NTDLL.@]
* NtSetSystemInformation [NTDLL.@]
* ZwSetSystemInformation [NTDLL.@]
* ZwSetSystemInformation [NTDLL.@]
*/
*/
...
...
dlls/ntdll/ntdll.spec
View file @
11412337
...
@@ -274,6 +274,7 @@
...
@@ -274,6 +274,7 @@
@ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
@ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
@ stdcall NtQuerySystemEnvironmentValueEx(ptr ptr ptr ptr ptr)
@ stdcall NtQuerySystemEnvironmentValueEx(ptr ptr ptr ptr ptr)
@ stdcall NtQuerySystemInformation(long long long long)
@ stdcall NtQuerySystemInformation(long long long long)
@ stdcall NtQuerySystemInformationEx(long ptr long ptr long ptr)
@ stdcall NtQuerySystemTime(ptr)
@ stdcall NtQuerySystemTime(ptr)
@ stdcall NtQueryTimer(ptr long ptr long ptr)
@ stdcall NtQueryTimer(ptr long ptr long ptr)
@ stdcall NtQueryTimerResolution(long long long)
@ stdcall NtQueryTimerResolution(long long long)
...
@@ -1193,6 +1194,7 @@
...
@@ -1193,6 +1194,7 @@
@ stdcall ZwQuerySystemEnvironmentValue(ptr ptr long ptr) NtQuerySystemEnvironmentValue
@ stdcall ZwQuerySystemEnvironmentValue(ptr ptr long ptr) NtQuerySystemEnvironmentValue
@ stdcall ZwQuerySystemEnvironmentValueEx(ptr ptr ptr ptr ptr) NtQuerySystemEnvironmentValueEx
@ stdcall ZwQuerySystemEnvironmentValueEx(ptr ptr ptr ptr ptr) NtQuerySystemEnvironmentValueEx
@ stdcall ZwQuerySystemInformation(long long long long) NtQuerySystemInformation
@ stdcall ZwQuerySystemInformation(long long long long) NtQuerySystemInformation
@ stdcall ZwQuerySystemInformationEx(long ptr long ptr long ptr) NtQuerySystemInformationEx
@ stdcall ZwQuerySystemTime(ptr) NtQuerySystemTime
@ stdcall ZwQuerySystemTime(ptr) NtQuerySystemTime
@ stdcall ZwQueryTimer(ptr long ptr long ptr) NtQueryTimer
@ stdcall ZwQueryTimer(ptr long ptr long ptr) NtQueryTimer
@ stdcall ZwQueryTimerResolution(long long long) NtQueryTimerResolution
@ stdcall ZwQueryTimerResolution(long long long) NtQueryTimerResolution
...
...
dlls/ntdll/tests/info.c
View file @
11412337
...
@@ -88,7 +88,7 @@ static BOOL InitFunctionPtrs(void)
...
@@ -88,7 +88,7 @@ static BOOL InitFunctionPtrs(void)
/* starting with Win7 */
/* starting with Win7 */
pNtQuerySystemInformationEx
=
(
void
*
)
GetProcAddress
(
hntdll
,
"NtQuerySystemInformationEx"
);
pNtQuerySystemInformationEx
=
(
void
*
)
GetProcAddress
(
hntdll
,
"NtQuerySystemInformationEx"
);
if
(
!
pNtQuerySystemInformationEx
)
if
(
!
pNtQuerySystemInformationEx
)
skip
(
"NtQuerySystemInformationEx() is not supported, some tests will be skipped.
\n
"
);
win_
skip
(
"NtQuerySystemInformationEx() is not supported, some tests will be skipped.
\n
"
);
pGetLogicalProcessorInformationEx
=
(
void
*
)
GetProcAddress
(
hkernel32
,
"GetLogicalProcessorInformationEx"
);
pGetLogicalProcessorInformationEx
=
(
void
*
)
GetProcAddress
(
hkernel32
,
"GetLogicalProcessorInformationEx"
);
...
@@ -721,15 +721,17 @@ static void test_query_logicalprocex(void)
...
@@ -721,15 +721,17 @@ static void test_query_logicalprocex(void)
len
=
0
;
len
=
0
;
relationship
=
RelationAll
;
relationship
=
RelationAll
;
status
=
pNtQuerySystemInformationEx
(
SystemLogicalProcessorInformationEx
,
&
relationship
,
sizeof
(
relationship
),
NULL
,
0
,
&
len
);
status
=
pNtQuerySystemInformationEx
(
SystemLogicalProcessorInformationEx
,
&
relationship
,
sizeof
(
relationship
),
NULL
,
0
,
&
len
);
todo_wine
{
ok
(
status
==
STATUS_INFO_LENGTH_MISMATCH
,
"got 0x%08x
\n
"
,
status
);
ok
(
status
==
STATUS_INFO_LENGTH_MISMATCH
,
"got 0x%08x
\n
"
,
status
);
ok
(
len
>
0
,
"got %u
\n
"
,
len
);
ok
(
len
>
0
,
"got %u
\n
"
,
len
);
}
len2
=
0
;
len2
=
0
;
ret
=
pGetLogicalProcessorInformationEx
(
RelationAll
,
NULL
,
&
len2
);
ret
=
pGetLogicalProcessorInformationEx
(
RelationAll
,
NULL
,
&
len2
);
todo_wine
ok
(
!
ret
&&
GetLastError
()
==
ERROR_INSUFFICIENT_BUFFER
,
"got %d, error %d
\n
"
,
ret
,
GetLastError
());
ok
(
!
ret
&&
GetLastError
()
==
ERROR_INSUFFICIENT_BUFFER
,
"got %d, error %d
\n
"
,
ret
,
GetLastError
());
ok
(
len
==
len2
,
"got %u, expected %u
\n
"
,
len2
,
len
);
ok
(
len
==
len2
,
"got %u, expected %u
\n
"
,
len2
,
len
);
if
(
len
==
len2
)
{
if
(
len
&&
len
==
len2
)
{
infoex
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
len
);
infoex
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
len
);
infoex2
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
len
);
infoex2
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
len
);
...
...
include/winternl.h
View file @
11412337
...
@@ -2242,6 +2242,7 @@ NTSYSAPI NTSTATUS WINAPI NtQuerySemaphore(HANDLE,SEMAPHORE_INFORMATION_CLASS,PV
...
@@ -2242,6 +2242,7 @@ NTSYSAPI NTSTATUS WINAPI NtQuerySemaphore(HANDLE,SEMAPHORE_INFORMATION_CLASS,PV
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySymbolicLinkObject
(
HANDLE
,
PUNICODE_STRING
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySymbolicLinkObject
(
HANDLE
,
PUNICODE_STRING
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemEnvironmentValue
(
PUNICODE_STRING
,
PWCHAR
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemEnvironmentValue
(
PUNICODE_STRING
,
PWCHAR
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemInformation
(
SYSTEM_INFORMATION_CLASS
,
PVOID
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemInformation
(
SYSTEM_INFORMATION_CLASS
,
PVOID
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemInformationEx
(
SYSTEM_INFORMATION_CLASS
,
void
*
,
ULONG
,
void
*
,
ULONG
,
ULONG
*
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemTime
(
PLARGE_INTEGER
);
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemTime
(
PLARGE_INTEGER
);
NTSYSAPI
NTSTATUS
WINAPI
NtQueryTimer
(
HANDLE
,
TIMER_INFORMATION_CLASS
,
PVOID
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQueryTimer
(
HANDLE
,
TIMER_INFORMATION_CLASS
,
PVOID
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQueryTimerResolution
(
PULONG
,
PULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
NtQueryTimerResolution
(
PULONG
,
PULONG
,
PULONG
);
...
...
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