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
1b1f8d91
Commit
1b1f8d91
authored
Jan 30, 2023
by
Paul Gofman
Committed by
Alexandre Julliard
Jan 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for NtQueryInformationProcess( ProcessHandleTable ).
parent
f954fb88
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
process.c
dlls/ntdll/unix/process.c
+6
-0
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/unix/process.c
View file @
1b1f8d91
...
...
@@ -1343,6 +1343,7 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class
else
if
(
!
handle
)
ret
=
STATUS_INVALID_HANDLE
;
else
{
FIXME
(
"ProcessHandleCount (%p,%p,0x%08x,%p) stub
\n
"
,
handle
,
info
,
(
int
)
size
,
ret_len
);
memset
(
info
,
0
,
4
);
len
=
4
;
}
...
...
@@ -1355,6 +1356,11 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class
}
break
;
case
ProcessHandleTable
:
FIXME
(
"ProcessHandleTable (%p,%p,0x%08x,%p) stub
\n
"
,
handle
,
info
,
(
int
)
size
,
ret_len
);
len
=
0
;
break
;
case
ProcessAffinityMask
:
len
=
sizeof
(
ULONG_PTR
);
if
(
size
==
len
)
...
...
include/winternl.h
View file @
1b1f8d91
...
...
@@ -1574,6 +1574,7 @@ typedef enum _PROCESSINFOCLASS {
ProcessConsoleHostProcess
=
49
,
ProcessWindowInformation
=
50
,
ProcessHandleInformation
=
51
,
ProcessHandleTable
=
58
,
ProcessPowerThrottlingState
=
77
,
ProcessLeapSecondInformation
=
97
,
MaxProcessInfoClass
,
...
...
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