[1] | 1 | /* libmondo-stream-EXT.h */
|
---|
| 2 |
|
---|
| 3 |
|
---|
| 4 |
|
---|
[1647] | 5 | extern int closein_tape();
|
---|
| 6 | extern int closeout_tape();
|
---|
[3870] | 7 | extern char *find_tape_device(void);
|
---|
[128] | 8 | extern void insist_on_this_tape_number(int tapeno);
|
---|
| 9 | extern void log_tape_pos(void);
|
---|
| 10 | extern int maintain_collection_of_recent_archives(char *td,
|
---|
| 11 | char *latest_fname);
|
---|
[1647] | 12 | extern int openin_tape();
|
---|
[1954] | 13 | extern int openout_tape();
|
---|
[1647] | 14 | extern int read_file_from_stream_to_file(
|
---|
[128] | 15 | char *outfile, long long size);
|
---|
[1647] | 16 | extern int read_file_from_stream_to_stream(
|
---|
[128] | 17 | FILE * fout, long long size);
|
---|
[1647] | 18 | extern int read_file_from_stream_FULL(
|
---|
[128] | 19 | char *outfname, FILE * foutstream,
|
---|
| 20 | long long orig_size);
|
---|
| 21 | extern int read_header_block_from_stream(long long *plen, char *filename,
|
---|
| 22 | int *pcontrol_char);
|
---|
| 23 | extern int register_in_tape_catalog(t_archtype type, int number, long aux,
|
---|
| 24 | char *fn);
|
---|
| 25 | extern bool should_we_write_to_next_tape(long mediasize,
|
---|
[684] | 26 | off_t
|
---|
[128] | 27 | length_of_incoming_file);
|
---|
| 28 | extern int skip_incoming_files_until_we_find_this_one(char
|
---|
| 29 | *the_file_I_was_reading);
|
---|
[1647] | 30 | extern int start_to_read_from_next_tape();
|
---|
| 31 | extern int start_to_write_to_next_tape();
|
---|
| 32 | extern int write_backcatalog_to_tape();
|
---|
[128] | 33 | extern int write_data_disks_to_stream(char *fname);
|
---|
[1647] | 34 | extern int write_file_to_stream_from_file(
|
---|
[128] | 35 | char *infile);
|
---|
[3860] | 36 | extern int write_header_block_to_stream(off_t length_of_incoming_file, const char *filename, int control_char);
|
---|
[128] | 37 | extern void wrong_marker(int should_be, int it_is);
|
---|
[1647] | 38 | extern int read_EXAT_files_from_tape(
|
---|
[128] | 39 | long long *ptmp_size, char *tmp_fname,
|
---|
| 40 | int *pctrl_chr, char *xattr_fname,
|
---|
| 41 | char *acl_fname);
|
---|
[1647] | 42 | extern int write_EXAT_files_to_tape(
|
---|
[128] | 43 | char *xattr_fname, char *acl_fname);
|
---|