mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 12:11:38 -06:00
22.00
This commit is contained in:
9
CPP/7zip/Archive/Zip/ZipOut.h
Normal file → Executable file
9
CPP/7zip/Archive/Zip/ZipOut.h
Normal file → Executable file
@@ -18,7 +18,8 @@ public:
|
||||
FILETIME Ntfs_MTime;
|
||||
FILETIME Ntfs_ATime;
|
||||
FILETIME Ntfs_CTime;
|
||||
bool NtfsTimeIsDefined;
|
||||
bool Write_NtfsTime;
|
||||
bool Write_UnixTime;
|
||||
|
||||
// It's possible that NtfsTime is not defined, but there is NtfsTime in Extra.
|
||||
|
||||
@@ -32,7 +33,10 @@ public:
|
||||
return 4 + 5 + size;
|
||||
}
|
||||
|
||||
CItemOut(): NtfsTimeIsDefined(false) {}
|
||||
CItemOut():
|
||||
Write_NtfsTime(false),
|
||||
Write_UnixTime(false)
|
||||
{}
|
||||
};
|
||||
|
||||
|
||||
@@ -62,6 +66,7 @@ class COutArchive
|
||||
Write32(ft.dwHighDateTime);
|
||||
}
|
||||
|
||||
void WriteTimeExtra(const CItemOut &item, bool writeNtfs);
|
||||
void WriteUtfName(const CItemOut &item);
|
||||
void WriteExtra(const CExtraBlock &extra);
|
||||
void WriteCommonItemInfo(const CLocalItem &item, bool isZip64);
|
||||
|
||||
Reference in New Issue
Block a user