Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3acac5b2
Commit
3acac5b2
authored
Nov 22, 2015
by
Rafał Harabień
Committed by
Alexandre Julliard
Nov 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/ddk: Fix memory layout of IRP and IO_STACK_LOCATION in wine64.
Signed-off-by:
Rafał Harabień
<
rafalh1992@o2.pl
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
46e94c8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
wdm.h
include/ddk/wdm.h
+5
-3
No files found.
include/ddk/wdm.h
View file @
3acac5b2
...
...
@@ -400,7 +400,6 @@ typedef struct _KAPC {
BOOLEAN
Inserted
;
}
KAPC
,
*
PKAPC
,
*
RESTRICTED_POINTER
PRKAPC
;
#include <pshpack1.h>
typedef
struct
_IRP
{
CSHORT
Type
;
USHORT
Size
;
...
...
@@ -456,7 +455,6 @@ typedef struct _IRP {
}
Tail
;
}
IRP
;
typedef
struct
_IRP
*
PIRP
;
#include <poppack.h>
typedef
VOID
(
WINAPI
*
PINTERFACE_REFERENCE
)(
PVOID
Context
);
...
...
@@ -833,7 +831,9 @@ typedef NTSTATUS (WINAPI *PIO_COMPLETION_ROUTINE)(
#define SL_INVOKE_ON_SUCCESS 0x40
#define SL_INVOKE_ON_ERROR 0x80
#include <pshpack1.h>
#if !defined(_WIN64)
#include <pshpack4.h>
#endif
typedef
struct
_IO_STACK_LOCATION
{
UCHAR
MajorFunction
;
UCHAR
MinorFunction
;
...
...
@@ -974,7 +974,9 @@ typedef struct _IO_STACK_LOCATION {
PIO_COMPLETION_ROUTINE
CompletionRoutine
;
PVOID
Context
;
}
IO_STACK_LOCATION
,
*
PIO_STACK_LOCATION
;
#if !defined(_WIN64)
#include <poppack.h>
#endif
/* MDL definitions */
...
...
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