1 typedef struct {
2 int NumPackStreams;
3 } CSzAr;
4 typedef struct {
5 CSzAr db;
6 } CSzArEx;
7 int SzArEx_Init(CSzArEx *p)
8 {
9 return p->db.NumPackStreams;
10 }
11 int SzArEx_GetFolderFullPackSize(const CSzArEx *p)
12 {
13 return p->db.NumPackStreams;
14 }
15