mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-15 21:00:03 +02:00
add funai_bdp extractor
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
use binrw::BinRead;
|
||||
use crate::utils::common;
|
||||
|
||||
pub static DEC_KEY: u32 = 0x13641A98;
|
||||
|
||||
#[derive(BinRead)]
|
||||
pub struct IndexTableEntry {
|
||||
name_bytes: [u8; 32],
|
||||
pub offset: u32,
|
||||
pub size: u32,
|
||||
_unk: u32,
|
||||
}
|
||||
impl IndexTableEntry {
|
||||
pub fn name(&self) -> String {
|
||||
common::string_from_bytes(&self.name_bytes)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user