Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LzhHeader.h « Lzh « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 845b9a2100a2be0c53b1d79f9b82bc41790ed812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Archive/Lzh/Header.h

#ifndef __ARCHIVE_LZH_HEADER_H
#define __ARCHIVE_LZH_HEADER_H

#include "Common/Types.h"

namespace NArchive {
namespace NLzh {

const int kMethodIdSize = 5;

const Byte kExtIdFileName = 0x01;
const Byte kExtIdDirName  = 0x02;
const Byte kExtIdUnixTime = 0x54;

}}

#endif