1370b324cSopenharmony_ci// 7zProperties.h 2370b324cSopenharmony_ci 3370b324cSopenharmony_ci#ifndef ZIP7_INC_7Z_PROPERTIES_H 4370b324cSopenharmony_ci#define ZIP7_INC_7Z_PROPERTIES_H 5370b324cSopenharmony_ci 6370b324cSopenharmony_ci#include "../../PropID.h" 7370b324cSopenharmony_ci 8370b324cSopenharmony_cinamespace NArchive { 9370b324cSopenharmony_cinamespace N7z { 10370b324cSopenharmony_ci 11370b324cSopenharmony_ci// #define Z7_7Z_SHOW_PACK_STREAMS_SIZES // for debug 12370b324cSopenharmony_ci 13370b324cSopenharmony_ci#ifdef Z7_7Z_SHOW_PACK_STREAMS_SIZES 14370b324cSopenharmony_cienum 15370b324cSopenharmony_ci{ 16370b324cSopenharmony_ci kpidPackedSize0 = kpidUserDefined, 17370b324cSopenharmony_ci kpidPackedSize1, 18370b324cSopenharmony_ci kpidPackedSize2, 19370b324cSopenharmony_ci kpidPackedSize3, 20370b324cSopenharmony_ci kpidPackedSize4 21370b324cSopenharmony_ci}; 22370b324cSopenharmony_ci#endif 23370b324cSopenharmony_ci 24370b324cSopenharmony_ci}} 25370b324cSopenharmony_ci 26370b324cSopenharmony_ci#endif 27