diff options
Diffstat (limited to 'plugins/Db_autobackups/src/options.h')
-rw-r--r-- | plugins/Db_autobackups/src/options.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/Db_autobackups/src/options.h b/plugins/Db_autobackups/src/options.h index 86aa4509a6..27ddff4eef 100644 --- a/plugins/Db_autobackups/src/options.h +++ b/plugins/Db_autobackups/src/options.h @@ -26,14 +26,14 @@ typedef enum { BT_DISABLED = 0, BT_START = 1, BT_EXIT = 2, BT_PERIODIC = 4} Back typedef enum { PT_DAYS, PT_HOURS, PT_MINUTES} PeriodType;
typedef struct Options_tag {
- int backup_types;
+ int backup_types;
unsigned int period;
PeriodType period_type;
- TCHAR folder[MAX_PATH];
- unsigned int num_backups;
- BOOL disable_progress;
- BOOL disable_popups;
- BOOL use_zip;
+ TCHAR folder[MAX_PATH];
+ size_t num_backups;
+ BOOL disable_progress;
+ BOOL disable_popups;
+ BOOL use_zip;
} Options;
extern Options options;
\ No newline at end of file |