mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 03:15:00 -06:00
23 lines
283 B
C++
Executable File
23 lines
283 B
C++
Executable File
// 7zProperties.h
|
|
|
|
#ifndef __7Z_PROPERTIES_H
|
|
#define __7Z_PROPERTIES_H
|
|
|
|
#include "../../PropID.h"
|
|
|
|
namespace NArchive {
|
|
namespace N7z {
|
|
|
|
enum // PropID
|
|
{
|
|
kpidPackedSize0 = kpidUserDefined,
|
|
kpidPackedSize1,
|
|
kpidPackedSize2,
|
|
kpidPackedSize3,
|
|
kpidPackedSize4,
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|