source: MondoRescue/trunk/mondo/mondo/common/libmondo-archive.h@ 59

Last change on this file since 59 was 59, checked in by bcornec, 19 years ago

Trunk: indent on all source files

  • Property svn:keywords set to Id
File size: 2.1 KB
RevLine 
[1]1/* libmondo-archive.h
[58]2 * $Id: libmondo-archive.h 59 2005-10-10 23:34:31Z bcornec $
[1]3 */
4
[59]5int archive_this_fileset(struct s_bkpinfo *bkpinfo, char *filelist,
6 char *fname, int setno);
[1]7int backup_data(struct s_bkpinfo *bkpinfo);
[59]8int call_mindi_to_supply_boot_disks(struct s_bkpinfo *bkpinfo);
9bool can_we_fit_these_files_on_media(struct s_bkpinfo *bkpinfo,
10 char *files_to_add, ...);
11int do_that_initial_phase(struct s_bkpinfo *bkpinfo);
12int do_that_final_phase(struct s_bkpinfo *bkpinfo);
13int figure_out_kernel_path_interactively_if_necessary(char *kernel);
14bool get_bit_N_of_array(char *array, int N);
15int make_those_slices_phase(struct s_bkpinfo *bkpinfo);
16int make_those_afios_phase(struct s_bkpinfo *bkpinfo);
17int make_slices_and_images(struct s_bkpinfo *bkpinfo,
18 char *biggielist_fname);
19int make_iso_fs(struct s_bkpinfo *bkpinfo, char *destfile);
20int make_afioballs_and_images(struct s_bkpinfo *bkpinfo);
[1]21extern int (*move_files_to_cd) (struct s_bkpinfo *, char *, ...);
[59]22int _move_files_to_cd(struct s_bkpinfo *bkpinfo, char *files_to_add, ...);
[1]23extern int (*move_files_to_stream) (struct s_bkpinfo *, char *, ...);
[59]24int _move_files_to_stream(struct s_bkpinfo *bkpinfo, char *files_to_add,
25 ...);
26int offer_to_write_boot_floppies_to_physical_disks(struct s_bkpinfo
27 *bkpinfo);
28void pause_and_ask_for_cdr(int, bool *);
29void set_bit_N_of_array(char *array, int N, bool true_or_false);
30int slice_up_file_etc(struct s_bkpinfo *bkpinfo, char *biggie_filename,
31 char *partimagehack_fifo,
32 long biggie_file_number, long noof_biggie_files,
33 bool use_partimagehack);
[1]34int verify_data(struct s_bkpinfo *bkpinfo);
[59]35void wipe_archives(char *d);
36int write_image_to_floppy(char *device, char *datafile);
37int write_image_to_floppy_SUB(char *device, char *datafile);
38int write_iso_and_go_on(struct s_bkpinfo *bkpinfo, bool last_cd);
39int write_final_iso_if_necessary(struct s_bkpinfo *bkpinfo);
40int call_growisofs(struct s_bkpinfo *bkpinfo, char *destfile);
41int make_afioballs_and_images_SINGLETHREAD(struct s_bkpinfo *bkpinfo);
42int archive_this_fileset_with_star(struct s_bkpinfo *bkpinfo,
43 char *filelist, char *fname, int setno);
Note: See TracBrowser for help on using the repository browser.