void pinq_ar_files(
Pstore store, /* handle to Store object */ Pint *error_ind, /* (out) error indicator */ Par_file_list **ar_files /* (out) list of archive file names and ids */
)
typedef void * Pstore;
typedef struct {
Pint num_ar_files; /* number of archive files */
Par_file *ar_files; /* list of archive files */
} Par_file_list;
typedef struct {
Pint id; /* identifier of archive file */
char *name; /* name of archive */
} Par_file;
The memory referenced by *ar_files is managed by store.