OSDN Git Service

add japanese site html
[sevenzip/7-Zip.git] / 7z457 / CPP / 7zip / Archive / Lzh / LzhHeader.h
1 // Archive/Lzh/Header.h
2
3 #ifndef __ARCHIVE_LZH_HEADER_H
4 #define __ARCHIVE_LZH_HEADER_H
5
6 #include "Common/Types.h"
7
8 namespace NArchive {
9 namespace NLzh {
10
11 const int kMethodIdSize = 5;
12
13 const Byte kExtIdFileName = 0x01;
14 const Byte kExtIdDirName  = 0x02;
15 const Byte kExtIdUnixTime = 0x54;
16
17 }}
18
19 #endif