[−][src]Struct wcxhead::tHeaderData
tHeaderData is a structure used in ReadHeader.
typedef struct {
char ArcName[260];
char FileName[260];
int Flags;
int PackSize;
int UnpSize;
int HostOS;
int FileCRC;
int FileTime;
int UnpVer;
int Method;
int FileAttr;
char* CmtBuf;
int CmtBufSize;
int CmtSize;
int CmtState;
} tHeaderData;
Description
ArcName, FileName, PackSize, UnpSize contain the name of the archive, the name of the file within the archive, size
of the file when packed, and the size of the file when extracted, respectively.
HostOS is there for compatibility with unrar.dll only, and should be set to zero.
FileCRC is the 32-bit CRC (cyclic redundancy check) checksum of the file. If not available, set to zero.
The Cmt* values can be used to transfer file comment information. They are currently not used in Total Commander, so they
may be set to zero.
FileAttr can be set to any combination of the following values:
| Value | Description |
|---|---|
| 0x1 | Read-only file |
| 0x2 | Hidden file |
| 0x4 | System file |
| 0x8 | Volume ID file |
| 0x10 | Directory |
| 0x20 | Archive file |
| 0x3F | Any file |
FileTime contains the date and the time of the file’s last update. Use the following algorithm to set the value:
FileTime = (year - 1980) << 25 | month << 21 | day << 16 | hour << 11 | minute << 5 | second/2;
Make sure that:
year is in the four digit format between 1980 and 2100
month is a number between 1 and 12
hour is in the 24 hour format
Fields
ArcName: [c_char; 260]FileName: [c_char; 260]Flags: c_intPackSize: c_intUnpSize: c_intHostOS: c_intFileCRC: c_intFileTime: c_intUnpVer: c_intMethod: c_intFileAttr: c_intCmtBuf: *mut c_charCmtBufSize: c_intCmtSize: c_intCmtState: c_intAuto Trait Implementations
impl !Sync for tHeaderData
impl Unpin for tHeaderData
impl !Send for tHeaderData
impl UnwindSafe for tHeaderData
impl RefUnwindSafe for tHeaderData
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,