mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 04:13:35 +00:00
- Add some missing ARM64 exports to ntdll, kernel32 and user32 - Create mmtypes header file based on WoA debug symbols - Get the remaining headers in order, so we can build ARM64 apps - Adjust subsystem version for binaries so they can run on WoA host - Get calc, notepad and more base apps to build for ARM64 platform CORE-17518 Reviewed-by: Hermès Bélusca-Maïto <[email protected]> Reviewed-by: Stanislav Motylkov <[email protected]>
9 lines
367 B
C
9 lines
367 B
C
|
|
#define CONTEXT_ARM64 0x00400000L
|
|
#define CONTEXT_CONTROL (CONTEXT_ARM64 | 0x1L)
|
|
#define CONTEXT_INTEGER (CONTEXT_ARM64 | 0x2L)
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_ARM64 | 0x4L)
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_ARM64 | 0x8L)
|
|
#define CONTEXT_X18 (CONTEXT_ARM64 | 0x10L)
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT)
|