pub type EOS_TitleStorage_FileMetadata = _tagEOS_TitleStorage_FileMetadata;Expand description
Metadata information for a specific file
Aliased Type§
#[repr(C)]pub struct EOS_TitleStorage_FileMetadata {
pub ApiVersion: i32,
pub FileSizeBytes: u32,
pub MD5Hash: *const i8,
pub Filename: *const i8,
pub UnencryptedDataSizeBytes: u32,
}Fields§
§ApiVersion: i32API Version: Set this to EOS_TITLESTORAGE_FILEMETADATA_API_LATEST.
FileSizeBytes: u32The total size of the file in bytes (Includes file header in addition to file contents).
MD5Hash: *const i8The MD5 Hash of the entire file (including additional file header), in hex digits
Filename: *const i8The file’s name
UnencryptedDataSizeBytes: u32The size of data (payload) in file in unencrypted (original) form.