mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 12:04:51 +00:00
[XDK][NDK] Restore struct alignment for IO_STACK_LOCATION
CORE-14782
This commit is contained in:
parent
1f2f03dd76
commit
370ffd1123
1 changed files with 9 additions and 0 deletions
|
@ -2746,6 +2746,10 @@ typedef struct _ACPI_INTERFACE_STANDARD2 {
|
||||||
PUNREGISTER_FOR_DEVICE_NOTIFICATIONS2 UnregisterForDeviceNotifications;
|
PUNREGISTER_FOR_DEVICE_NOTIFICATIONS2 UnregisterForDeviceNotifications;
|
||||||
} ACPI_INTERFACE_STANDARD2, *PACPI_INTERFACE_STANDARD2;
|
} ACPI_INTERFACE_STANDARD2, *PACPI_INTERFACE_STANDARD2;
|
||||||
|
|
||||||
|
#if !defined(_AMD64_) && !defined(_ARM_)
|
||||||
|
#include <pshpack4.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct _IO_STACK_LOCATION {
|
typedef struct _IO_STACK_LOCATION {
|
||||||
UCHAR MajorFunction;
|
UCHAR MajorFunction;
|
||||||
UCHAR MinorFunction;
|
UCHAR MinorFunction;
|
||||||
|
@ -2954,6 +2958,11 @@ typedef struct _IO_STACK_LOCATION {
|
||||||
PVOID Context;
|
PVOID Context;
|
||||||
} IO_STACK_LOCATION, *PIO_STACK_LOCATION;
|
} IO_STACK_LOCATION, *PIO_STACK_LOCATION;
|
||||||
|
|
||||||
|
#if !defined(_AMD64_) && !defined(_ARM_)
|
||||||
|
#include "poppack.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* IO_STACK_LOCATION.Control */
|
/* IO_STACK_LOCATION.Control */
|
||||||
|
|
||||||
#define SL_PENDING_RETURNED 0x01
|
#define SL_PENDING_RETURNED 0x01
|
||||||
|
|
Loading…
Reference in a new issue