-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathcapa_bits.h
More file actions
17 lines (17 loc) · 770 Bytes
/
capa_bits.h
File metadata and controls
17 lines (17 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;