Commit 1de185ef authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

include: Add new ARM defines to winnt.h.

parent 220aeda3
...@@ -790,6 +790,11 @@ typedef enum _HEAP_INFORMATION_CLASS { ...@@ -790,6 +790,11 @@ typedef enum _HEAP_INFORMATION_CLASS {
#define PF_COMPARE64_EXCHANGE128 15 #define PF_COMPARE64_EXCHANGE128 15
#define PF_CHANNELS_ENABLED 16 #define PF_CHANNELS_ENABLED 16
#define PF_XSAVE_ENABLED 17 #define PF_XSAVE_ENABLED 17
#define PF_ARM_VFP_32_REGISTERS_AVAILABLE 18
#define PF_ARM_NEON_INSTRUCTIONS_AVAILABLE 19
#define PF_SECOND_LEVEL_ADDRESS_TRANSLATION 20
#define PF_VIRT_FIRMWARE_ENABLED 21
#define PF_RDWRFSGSBASE_AVAILABLE 22
/* Execution state flags */ /* Execution state flags */
...@@ -1541,9 +1546,11 @@ typedef struct _CONTEXT ...@@ -1541,9 +1546,11 @@ typedef struct _CONTEXT
/* The following flags control the contents of the CONTEXT structure. */ /* The following flags control the contents of the CONTEXT structure. */
#define CONTEXT_ARM 0x0000040 #define CONTEXT_ARM 0x0200000
#define CONTEXT_CONTROL (CONTEXT_ARM | 0x00000001) #define CONTEXT_CONTROL (CONTEXT_ARM | 0x00000001)
#define CONTEXT_INTEGER (CONTEXT_ARM | 0x00000002) #define CONTEXT_INTEGER (CONTEXT_ARM | 0x00000002)
#define CONTEXT_FLOATING_POINT (CONTEXT_ARM | 0x00000004)
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_ARM | 0x00000008)
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER) #define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment