blob: 899183a2459b04942315e0f86f0a91059f910066 [file] [log] [blame]
typedef struct {
int NumPackStreams;
} CSzAr;
typedef struct {
CSzAr db;
} CSzArEx;
int SzArEx_Init(CSzArEx *p)
{
return p->db.NumPackStreams;
}
int SzArEx_GetFolderFullPackSize(const CSzArEx *p)
{
return p->db.NumPackStreams;
}