extern structstd.os.windows.IO_STATUS_BLOCK[src]

Fields

u: extern union {
    Status: NTSTATUS,
    Pointer: ?*anyopaque,
}
Information: ULONG_PTR

Source Code

Source code
pub const IO_STATUS_BLOCK = extern struct {
    // "DUMMYUNIONNAME" expands to "u"
    u: extern union {
        Status: NTSTATUS,
        Pointer: ?*anyopaque,
    },
    Information: ULONG_PTR,
}