From eaec721f0cffdc2c04c7e682a03764da300b8d8f Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 11 Sep 2017 18:44:40 +0200 Subject: [PATCH] ntstatus: add definition for STATUS_CANCELLED --- src/ntstatus.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ntstatus.h b/src/ntstatus.h index 4eddc53..d6eb493 100644 --- a/src/ntstatus.h +++ b/src/ntstatus.h @@ -68,6 +68,10 @@ typedef NTSTATUS* PNTSTATUS; #define STATUS_PENDING ((NTSTATUS) 0x00000103L) #endif +#ifndef STATUS_CANCELLED +#define STATUS_CANCELLED ((NTSTATUS) 0xC0000120L) +#endif + #ifndef STATUS_SEVERITY_SUCCESS #define STATUS_SEVERITY_SUCCESS 0x0 #endif