From fd83a5f2ad3efc526caa2efd9ce9049d38331bc1 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 3 Jan 2022 13:00:54 -0800 Subject: fix(windows-kernel-sys): u32 casting --- crates/windows-kernel-sys/src/base.rs | 60 +++++++++++++++++------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/crates/windows-kernel-sys/src/base.rs b/crates/windows-kernel-sys/src/base.rs index 073afea..5f03f9c 100644 --- a/crates/windows-kernel-sys/src/base.rs +++ b/crates/windows-kernel-sys/src/base.rs @@ -7,33 +7,33 @@ pub use cty::*; include!(concat!(env!("OUT_DIR"), "/base.rs")); pub const STATUS_SUCCESS: NTSTATUS = 0x00000000; -pub const STATUS_GUARD_PAGE_VIOLATION: NTSTATUS = 0x80000001 as u32 as i32; -pub const STATUS_DATATYPE_MISALIGNMENT: NTSTATUS = 0x80000002 as u32 as i32; -pub const STATUS_BREAKPOINT: NTSTATUS = 0x80000003 as u32 as i32; -pub const STATUS_SINGLE_STEP: NTSTATUS = 0x80000004 as u32 as i32; -pub const STATUS_UNWIND_CONSOLIDATE: NTSTATUS = 0x80000029 as u32 as i32; -pub const STATUS_UNSUCCESSFUL: NTSTATUS = 0xC0000001 as u32 as i32; -pub const STATUS_NOT_IMPLEMENTED: NTSTATUS = 0xC0000002 as u32 as i32; -pub const STATUS_ACCESS_VIOLATION: NTSTATUS = 0xC0000005 as u32 as i32; -pub const STATUS_IN_PAGE_ERROR: NTSTATUS = 0xC0000006 as u32 as i32; -pub const STATUS_INVALID_HANDLE: NTSTATUS = 0xC0000008 as u32 as i32; -pub const STATUS_INVALID_PARAMETER: NTSTATUS = 0xC000000D as u32 as i32; -pub const STATUS_END_OF_FILE: NTSTATUS = 0xC0000011 as u32 as i32; -pub const STATUS_NO_MEMORY: NTSTATUS = 0xC0000017 as u32 as i32; -pub const STATUS_ILLEGAL_INSTRUCTION: NTSTATUS = 0xC000001D as u32 as i32; -pub const STATUS_NONCONTINUABLE_EXCEPTION: NTSTATUS = 0xC0000025 as u32 as i32; -pub const STATUS_INVALID_DISPOSITION: NTSTATUS = 0xC0000026 as u32 as i32; -pub const STATUS_ARRAY_BOUNDS_EXCEEDED: NTSTATUS = 0xC000008C as u32 as i32; -pub const STATUS_FLOAT_DENORMAL_OPERAND: NTSTATUS = 0xC000008D as u32 as i32; -pub const STATUS_FLOAT_DIVIDE_BY_ZERO: NTSTATUS = 0xC000008E as u32 as i32; -pub const STATUS_FLOAT_INEXACT_RESULT: NTSTATUS = 0xC000008F as u32 as i32; -pub const STATUS_FLOAT_INVALID_OPERATION: NTSTATUS = 0xC0000090 as u32 as i32; -pub const STATUS_FLOAT_OVERFLOW: NTSTATUS = 0xC0000091 as u32 as i32; -pub const STATUS_FLOAT_STACK_CHECK: NTSTATUS = 0xC0000092 as u32 as i32; -pub const STATUS_FLOAT_UNDERFLOW: NTSTATUS = 0xC0000093 as u32 as i32; -pub const STATUS_INTEGER_DIVIDE_BY_ZERO: NTSTATUS = 0xC0000094 as u32 as i32; -pub const STATUS_INTEGER_OVERFLOW: NTSTATUS = 0xC0000095 as u32 as i32; -pub const STATUS_PRIVILEGED_INSTRUCTION: NTSTATUS = 0xC0000096 as u32 as i32; -pub const STATUS_INSUFFICIENT_RESOURCES: NTSTATUS = 0xC000009A as u32 as i32; -pub const STATUS_INVALID_USER_BUFFER: NTSTATUS = 0xC00000E8 as u32 as i32; -pub const STATUS_STACK_OVERFLOW: NTSTATUS = 0xC00000FD as u32 as i32; +pub const STATUS_GUARD_PAGE_VIOLATION: NTSTATUS = 0x80000001_u32 as i32; +pub const STATUS_DATATYPE_MISALIGNMENT: NTSTATUS = 0x80000002_u32 as i32; +pub const STATUS_BREAKPOINT: NTSTATUS = 0x80000003_u32 as i32; +pub const STATUS_SINGLE_STEP: NTSTATUS = 0x80000004_u32 as i32; +pub const STATUS_UNWIND_CONSOLIDATE: NTSTATUS = 0x80000029_u32 as i32; +pub const STATUS_UNSUCCESSFUL: NTSTATUS = 0xC0000001_u32 as i32; +pub const STATUS_NOT_IMPLEMENTED: NTSTATUS = 0xC0000002_u32 as i32; +pub const STATUS_ACCESS_VIOLATION: NTSTATUS = 0xC0000005_u32 as i32; +pub const STATUS_IN_PAGE_ERROR: NTSTATUS = 0xC0000006_u32 as i32; +pub const STATUS_INVALID_HANDLE: NTSTATUS = 0xC0000008_u32 as i32; +pub const STATUS_INVALID_PARAMETER: NTSTATUS = 0xC000000D_u32 as i32; +pub const STATUS_END_OF_FILE: NTSTATUS = 0xC0000011_u32 as i32; +pub const STATUS_NO_MEMORY: NTSTATUS = 0xC0000017_u32 as i32; +pub const STATUS_ILLEGAL_INSTRUCTION: NTSTATUS = 0xC000001D_u32 as i32; +pub const STATUS_NONCONTINUABLE_EXCEPTION: NTSTATUS = 0xC0000025_u32 as i32; +pub const STATUS_INVALID_DISPOSITION: NTSTATUS = 0xC0000026_u32 as i32; +pub const STATUS_ARRAY_BOUNDS_EXCEEDED: NTSTATUS = 0xC000008C_u32 as i32; +pub const STATUS_FLOAT_DENORMAL_OPERAND: NTSTATUS = 0xC000008D_u32 as i32; +pub const STATUS_FLOAT_DIVIDE_BY_ZERO: NTSTATUS = 0xC000008E_u32 as i32; +pub const STATUS_FLOAT_INEXACT_RESULT: NTSTATUS = 0xC000008F_u32 as i32; +pub const STATUS_FLOAT_INVALID_OPERATION: NTSTATUS = 0xC0000090_u32 as i32; +pub const STATUS_FLOAT_OVERFLOW: NTSTATUS = 0xC0000091_u32 as i32; +pub const STATUS_FLOAT_STACK_CHECK: NTSTATUS = 0xC0000092_u32 as i32; +pub const STATUS_FLOAT_UNDERFLOW: NTSTATUS = 0xC0000093_u32 as i32; +pub const STATUS_INTEGER_DIVIDE_BY_ZERO: NTSTATUS = 0xC0000094_u32 as i32; +pub const STATUS_INTEGER_OVERFLOW: NTSTATUS = 0xC0000095_u32 as i32; +pub const STATUS_PRIVILEGED_INSTRUCTION: NTSTATUS = 0xC0000096_u32 as i32; +pub const STATUS_INSUFFICIENT_RESOURCES: NTSTATUS = 0xC000009A_u32 as i32; +pub const STATUS_INVALID_USER_BUFFER: NTSTATUS = 0xC00000E8_u32 as i32; +pub const STATUS_STACK_OVERFLOW: NTSTATUS = 0xC00000FD_u32 as i32; -- cgit v1.2.3