urbackup_frontend_wx/capa_bits.h

17 lines
770 B
C

const int DONT_SHOW_SETTINGS=1;
const int DONT_ALLOW_PAUSE=2;
const int DONT_ALLOW_STARTING_FILE_BACKUPS=4;
const int DONT_ALLOW_STARTING_IMAGE_BACKUPS=8;
const int DONT_ALLOW_CONFIG_PATHS=16;
const int DONT_SHOW_LOGS=32;
const int DONT_DO_IMAGE_BACKUPS=64;
const int DONT_ALLOW_STARTING_FULL_IMAGE_BACKUPS=1<<8;
const int DONT_ALLOW_STARTING_INCR_FILE_BACKUPS=1<<9;
const int DONT_ALLOW_STARTING_FULL_FILE_BACKUPS=1<<10;
const int DONT_ALLOW_EXIT_TRAY_ICON=1<<11;
const int ALLOW_TOKEN_AUTHENTICATION=1<<12;
const int DONT_ALLOW_FILE_RESTORE = 1 << 13;
const int DONT_ALLOW_COMPONENT_RESTORE = 1 << 14;
const int DONT_ALLOW_COMPONENT_CONFIG = 1 << 15;
const int STATUS_NO_COMPONENTS = 1 << 16;
const int DONT_ALLOW_STARTING_INCR_IMAGE_BACKUPS = 1 << 17;