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
737b9e5a
Commit
737b9e5a
authored
May 23, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winternl.h: Make the fields of the PROCESS_BASIC_INFORMATION structure use same…
winternl.h: Make the fields of the PROCESS_BASIC_INFORMATION structure use same type width as a PSDK one.
parent
0cfe42b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
process.c
dlls/ntdll/process.c
+1
-1
winternl.h
include/winternl.h
+5
-5
No files found.
dlls/ntdll/process.c
View file @
737b9e5a
...
...
@@ -144,7 +144,7 @@ NTSTATUS WINAPI NtQueryInformationProcess(
if
((
ret
=
wine_server_call
(
req
))
==
STATUS_SUCCESS
)
{
pbi
.
ExitStatus
=
reply
->
exit_code
;
pbi
.
PebBaseAddress
=
(
DWORD
)
reply
->
peb
;
pbi
.
PebBaseAddress
=
reply
->
peb
;
pbi
.
AffinityMask
=
reply
->
affinity
;
pbi
.
BasePriority
=
reply
->
priority
;
pbi
.
UniqueProcessId
=
reply
->
pid
;
...
...
include/winternl.h
View file @
737b9e5a
...
...
@@ -958,12 +958,12 @@ typedef struct _OBJECT_BASIC_INFORMATION {
typedef
struct
_PROCESS_BASIC_INFORMATION
{
#ifdef __WINESRC__
DWORD
ExitStatus
;
DWORD
PebBaseAddress
;
DWORD
_PTR
ExitStatus
;
PPEB
PebBaseAddress
;
DWORD_PTR
AffinityMask
;
DWORD
BasePriority
;
ULONG
UniqueProcessId
;
ULONG
InheritedFromUniqueProcessId
;
DWORD
_PTR
BasePriority
;
ULONG
_PTR
UniqueProcessId
;
ULONG
_PTR
InheritedFromUniqueProcessId
;
#else
PVOID
Reserved1
;
PPEB
PebBaseAddress
;
...
...
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