Changeset 1264 in MondoRescue for branches/stable/mondo/src/include
- Timestamp:
- Mar 24, 2007, 1:48:55 AM (18 years ago)
- Location:
- branches/stable/mondo/src/include
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/include/mr_conf.h
r1256 r1264 79 79 }; 80 80 81 /* mondorestore structure storing conf info 82 * each field of the configuration file should have an entry here 83 */ 84 struct mr_rs_conf { 85 /* Default media size */ 86 int media_size; 87 /* Default device of media */ 88 char *media_device; 89 /* Is the CD tray manual ? */ 90 bool manual_tray; 91 /* Default log level */ 92 int log_level; 93 /* default prefix for ISO names */ 94 char *prefix; 95 /* External tape blocksize */ 96 int external_tape_blocksize; 97 /* Internal tape blocksize */ 98 int internal_tape_blocksize; 99 /* Size in MB of the slices for biggiefiles */ 100 int slice_size; 101 /* Boot loader to use */ 102 char *boot_loader; 103 /* Differential backup ? */ 104 bool differential; 105 /* Default compression tool */ 106 char *compression_tool; 107 /* Which mode should be activated by default*/ 108 char *ui_mode; 109 /* Activate automatic restore ? */ 110 bool automatic_restore; 111 /* Images creation dir */ 112 char *images_dir; 113 }; 114 81 115 /* functions (public methods) */ 82 116 -
branches/stable/mondo/src/include/my-stuff.h
r1166 r1264 32 32 #include "mr_mem.h" 33 33 #include "mr_msg.h" 34 35 #if !defined(bool) && !defined(__cplusplus) 36 /** 37 * Create the illusion of a Boolean type. 38 */ 39 #define bool unsigned char 40 #define TRUE 1 41 #define FALSE 0 42 #endif 34 #include "mr_types.h" 43 35 44 36 #ifdef HAVE_CONFIG_H
Note:
See TracChangeset
for help on using the changeset viewer.