Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
std
os
uefi
tables
table_header.zig
pretty
plain
permalink
blame
history
•
9 lines
•
214 B
1
pub const TableHeader = extern struct {
2
signature: u64,
3
revision: u32,
4
5
/// The size, in bytes, of the entire table including the TableHeader
6
header_size: u32,
7
crc32: u32,
8
reserved: u32,
9
};