zig/lib/std/os/uefi/tables/table_header.zig
Andrew Kelley ed36dbbd9c
mv std/ lib/
that's all this commit does. further commits will fix cli flags and
such.

see #2221
2019-09-25 23:35:41 -04:00

9 lines
180 B
Zig

/// UEFI Specification, Version 2.8, 4.2
pub const TableHeader = extern struct {
signature: u64,
revision: u32,
header_size: u32,
crc32: u32,
reserved: u32,
};