pub fn statusBug(status: NTSTATUS) UnexpectedError
pub fn statusBug(status: NTSTATUS) UnexpectedError { switch (builtin.mode) { .Debug => std.debug.panic("programmer bug caused syscall status: 0x{x} ({s})", .{ @backingInt(status), std.enums.tagName(NTSTATUS, status) orelse "<unnamed>", }), else => return error.Unexpected, } }