Implemented oncatenation of split files during -cpx

This commit is contained in:
2008-05-31 17:40:18 +00:00
parent c4568b11bc
commit 80feb22f04
6 changed files with 256 additions and 116 deletions

View File

@ -161,6 +161,9 @@ struct XorrisO { /* the global context of xorriso */
int allow_graft_points;
int allow_restore; /* 0= disallowed, 1=allowed, 2=device files allowed */
int do_concat_split; /* 1= restore complete split file directories as
regular files
*/
int dialog;
@ -534,6 +537,8 @@ int Splitpart__parse(char *name, int *partno, int *total_parts,
int Splitpart__compose(char *adr, int partno, int total_parts,
off_t offset, off_t bytes, off_t total_bytes, int flag);
int Splitparts_sort(struct SplitparT *o, int count, int flag);
struct LstrinG {
char *text;
struct LstrinG *prev,*next;