blob: d5d40942327ca9f9217d6b0270ddace16f627b1d (
plain)
1
2
3
4
5
6
7
8
9
|
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,
};
|