mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-15 21:00:03 +02:00
- change formats to have their own folders with mod + include files + anything they want - change format list to be defined in formats.rs instead of in each format - move utils to their respective formats - some minor code changes in some formats
9 lines
197 B
Rust
9 lines
197 B
Rust
use binrw::{BinRead};
|
|
|
|
#[derive(BinRead)]
|
|
pub struct Header {
|
|
_magic_bytes: [u8; 4], //CrAU
|
|
pub file_format_version: u64,
|
|
pub manifest_size: u64,
|
|
pub metadata_signature_size: u32,
|
|
} |