Searched defs:ZipfileTab (Results 1 – 2 of 2) sorted by relevance
4226 typedef struct ZipfileTab ZipfileTab; typedef4227 struct ZipfileTab { struct4228 sqlite3_vtab base; /* Base class - must be first */4229 char *zFile; /* Zip file this table accesses (may be NULL) */4230 u8 *aBuffer; /* Temporary buffer used for various tasks */4232 ZipfileCsr *pCsrList; /* List of cursors */4233 i64 iNextCsrid;4236 ZipfileEntry *pFirstEntry; /* Linked list of all files (if pWriteFd!=0) */4237 ZipfileEntry *pLastEntry; /* Last element in pFirstEntry list */4261 ** Construct a new ZipfileTab virtual table object. argument
4232 typedef struct ZipfileTab ZipfileTab; typedef4233 struct ZipfileTab { struct4234 sqlite3_vtab base; /* Base class - must be first */4235 char *zFile; /* Zip file this table accesses (may be NULL) */4236 u8 *aBuffer; /* Temporary buffer used for various tasks */4238 ZipfileCsr *pCsrList; /* List of cursors */4239 i64 iNextCsrid;4242 ZipfileEntry *pFirstEntry; /* Linked list of all files (if pWriteFd!=0) */4243 ZipfileEntry *pLastEntry; /* Last element in pFirstEntry list */4267 ** Construct a new ZipfileTab virtual table object. argument