zig/lib/std/os/uefi/tables/table_header.zig
2019-10-16 21:46:41 +02:00

9 lines
213 B
Zig

pub const TableHeader = extern struct {
signature: u64,
revision: u32,
/// The size, in bytes, of the entire table including the TableHeader
header_size: u32,
crc32: u32,
reserved: u32,
};