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
82fb6118
Commit
82fb6118
authored
May 07, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix the LPC_MESSAGE structure definition for 64-bit.
parent
3e7647ad
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
nt.c
dlls/ntdll/nt.c
+2
-2
port.c
dlls/ntdll/tests/port.c
+2
-2
winternl.h
include/winternl.h
+2
-2
No files found.
dlls/ntdll/nt.c
View file @
82fb6118
...
...
@@ -691,8 +691,8 @@ NTSTATUS WINAPI NtRequestWaitReplyPort(
TRACE
(
"
\t
VirtualRangesOffset = %u
\n
"
,
pLpcMessageIn
->
VirtualRangesOffset
);
TRACE
(
"
\t
ClientId.UniqueProcess = %p
\n
"
,
pLpcMessageIn
->
ClientId
.
UniqueProcess
);
TRACE
(
"
\t
ClientId.UniqueThread = %p
\n
"
,
pLpcMessageIn
->
ClientId
.
UniqueThread
);
TRACE
(
"
\t
MessageId = %u
\n
"
,
pLpcMessageIn
->
MessageId
);
TRACE
(
"
\t
SectionSize = %u
\n
"
,
pLpcMessageIn
->
SectionSize
);
TRACE
(
"
\t
MessageId = %
l
u
\n
"
,
pLpcMessageIn
->
MessageId
);
TRACE
(
"
\t
SectionSize = %
l
u
\n
"
,
pLpcMessageIn
->
SectionSize
);
TRACE
(
"
\t
Data = %s
\n
"
,
debugstr_an
((
const
char
*
)
pLpcMessageIn
->
Data
,
pLpcMessageIn
->
DataSize
));
}
...
...
dlls/ntdll/tests/port.c
View file @
82fb6118
...
...
@@ -62,8 +62,8 @@ typedef struct _LPC_MESSAGE
USHORT
MessageType
;
USHORT
VirtualRangesOffset
;
CLIENT_ID
ClientId
;
ULONG
MessageId
;
ULONG
SectionSize
;
ULONG
_PTR
MessageId
;
ULONG
_PTR
SectionSize
;
UCHAR
Data
[
ANYSIZE_ARRAY
];
}
LPC_MESSAGE
,
*
PLPC_MESSAGE
;
...
...
include/winternl.h
View file @
82fb6118
...
...
@@ -1803,8 +1803,8 @@ typedef struct _LPC_MESSAGE {
USHORT
MessageType
;
USHORT
VirtualRangesOffset
;
CLIENT_ID
ClientId
;
ULONG
MessageId
;
ULONG
SectionSize
;
ULONG
_PTR
MessageId
;
ULONG
_PTR
SectionSize
;
UCHAR
Data
[
ANYSIZE_ARRAY
];
}
LPC_MESSAGE
,
*
PLPC_MESSAGE
;
...
...
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