view src/win32/7zip/7z/CPP/7zip/Archive/Lzh/LzhHeader.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
line wrap: on
line source
1 // Archive/Lzh/Header.h
3 #ifndef __ARCHIVE_LZH_HEADER_H
4 #define __ARCHIVE_LZH_HEADER_H
6 #include "Common/Types.h"
8 namespace NArchive {
9 namespace NLzh {
11 const int kMethodIdSize = 5;
13 const Byte kExtIdFileName = 0x01;
14 const Byte kExtIdDirName = 0x02;
15 const Byte kExtIdUnixTime = 0x54;
17 }}
19 #endif