mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-16 05:04:22 +02:00
funai_upg: add support for decryption + keys & add funai_upg_phl extractor for them
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
use binrw::BinRead;
|
||||
|
||||
#[derive(BinRead)]
|
||||
pub struct Header {
|
||||
_magic_bytes: [u8; 6],
|
||||
pub entries: [BodyHeader; 8],
|
||||
_unk: u16,
|
||||
_data_checksum: u32,
|
||||
_unk2: u32,
|
||||
}
|
||||
|
||||
#[derive(BinRead)]
|
||||
pub struct BodyHeader {
|
||||
pub body_type: u16,
|
||||
pub size: u32,
|
||||
}
|
||||
Reference in New Issue
Block a user