⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpioitem.h

📁 由7-zip提供的压缩、解压缩程序
💻 H
字号:
// Archive/cpio/ItemInfo.h#ifndef __ARCHIVE_CPIO_ITEMINFO_H#define __ARCHIVE_CPIO_ITEMINFO_H#include <sys/stat.h>#include "Common/Types.h"#include "Common/String.h"#include "CpioHeader.h"namespace NArchive {namespace NCpio {struct CItem{  AString Name;  UInt32 inode;  UInt32 Mode;  UInt32 UID;  UInt32 GID;  UInt32 Size;  UInt32 ModificationTime;  // char LinkFlag;  // AString LinkName; ?????  char Magic[8];  UInt32 NumLinks;  UInt32 DevMajor;  UInt32 DevMinor;  UInt32 RDevMajor;  UInt32 RDevMinor;  UInt32 ChkSum;  UInt32 Align;  bool IsDirectory() const #ifdef _WIN32    { return (Mode & _S_IFMT) == _S_IFDIR; }#else    { return (Mode & S_IFMT) == S_IFDIR; }#endif};class CItemEx: public CItem{public:  UInt64 HeaderPosition;  UInt32 HeaderSize;  UInt64 GetDataPosition() const { return HeaderPosition + HeaderSize; };};}}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -