Struct ctru_sys::romfs_file
source · #[repr(C)]pub struct romfs_file {
pub parent: u32_,
pub sibling: u32_,
pub dataOff: u64_,
pub dataSize: u64_,
pub nextHash: u32_,
pub nameLen: u32_,
pub name: __IncompleteArrayField<u16_>,
}
Expand description
RomFS file.
Fields§
§parent: u32_
< Offset of the parent directory.
sibling: u32_
< Offset of the next sibling file.
dataOff: u64_
< Offset of the file’s data.
dataSize: u64_
< Length of the file’s data.
nextHash: u32_
< File hash table pointer.
nameLen: u32_
< Name length.
name: __IncompleteArrayField<u16_>
< Name. (UTF-16)
Trait Implementations§
source§impl Debug for romfs_file
impl Debug for romfs_file
source§impl Default for romfs_file
impl Default for romfs_file
source§fn default() -> romfs_file
fn default() -> romfs_file
Returns the “default value” for a type. Read more