From 2ecd3e4440ef5f5a84cad9a42746f04e2e2a7d17 Mon Sep 17 00:00:00 2001 From: 3fault Date: Wed, 2 Jul 2025 14:06:37 -0400 Subject: [PATCH] add STATUS_GUARD_PAGE_VIOLATION constant to platform includes --- src/common/platform/status.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/platform/status.hpp b/src/common/platform/status.hpp index 7918fcf0..720f700c 100644 --- a/src/common/platform/status.hpp +++ b/src/common/platform/status.hpp @@ -10,6 +10,7 @@ using NTSTATUS = std::uint32_t; #define STATUS_TIMEOUT ((NTSTATUS)0x00000102L) #define STATUS_PENDING ((NTSTATUS)0x00000103L) +#define STATUS_GUARD_PAGE_VIOLATION ((NTSTATUS)0x80000001L) #define STATUS_BREAKPOINT ((NTSTATUS)0x80000003L) #define STATUS_SINGLE_STEP ((NTSTATUS)0x80000004L)