Add missing status codes for quota and pagefile limit violations
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 46s
Builds / ExectOS (amd64, release) (push) Successful in 38s
Builds / ExectOS (i686, release) (push) Successful in 37s
Builds / ExectOS (i686, debug) (push) Successful in 45s

This commit is contained in:
2026-07-13 16:45:46 +02:00
parent 5e91e362ae
commit e1c422c992

View File

@@ -80,6 +80,7 @@
#define STATUS_OBJECT_NAME_COLLISION ((XTSTATUS) 0xC0000035L)
#define STATUS_PORT_DISCONNECTED ((XTSTATUS) 0xC0000037L)
#define STATUS_CRC_ERROR ((XTSTATUS) 0xC000003FL)
#define STATUS_QUOTA_EXCEEDED ((XTSTATUS) 0xC0000044L)
#define STATUS_PRIVILEGE_NOT_HELD ((XTSTATUS) 0xC0000061L)
#define STATUS_FLOAT_OVERFLOW ((XTSTATUS) 0xC0000091L)
#define STATUS_INTEGER_OVERFLOW ((XTSTATUS) 0xC0000095L)
@@ -87,6 +88,7 @@
#define STATUS_DEVICE_NOT_READY ((XTSTATUS) 0xC00000A3L)
#define STATUS_NOT_SUPPORTED ((XTSTATUS) 0xC00000BBL)
#define STATUS_NAME_TOO_LONG ((XTSTATUS) 0xC0000106L)
#define STATUS_PAGEFILE_QUOTA_EXCEEDED ((XTSTATUS) 0xC000012CL)
#define STATUS_IO_DEVICE_ERROR ((XTSTATUS) 0xC0000185L)
#define STATUS_MUTEX_LIMIT_EXCEEDED ((XTSTATUS) 0xC0000191L)
#define STATUS_NOT_FOUND ((XTSTATUS) 0xC0000225L)