Lines Matching defs:CItem
385 struct CItem struct
387 AString Name;
388 AString Comment;
390 UInt32 MTime;
391 UInt32 PackSize;
392 UInt32 Size;
393 UInt32 FileCRC;
394 UInt32 SplitPos;
396 Byte Version;
397 Byte ExtractVersion;
398 Byte HostOS;
399 Byte Flags;
400 Byte Method;
401 Byte FileType;
404 UInt16 FileAccessMode;
408 UInt64 DataPosition;
410 CExtendedInfo ExtendedInfo;
412 bool IsEncrypted() const { return (Flags & NFlags::kGarbled) != 0; } in IsEncrypted()
413 bool IsDir() const { return (FileType == NFileType::kDirectory); } in IsDir()
414 bool IsSplitAfter() const { return (Flags & NFlags::kVolume) != 0; } in IsSplitAfter()
415 bool IsSplitBefore() const { return (Flags & NFlags::kExtFile) != 0; } in IsSplitBefore()
416 UInt32 GetWinAttrib() const in GetWinAttrib()