diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-05 11:25:28 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-05 16:47:55 +0200 |
commit | fede2cfa18b5cd8bb40f01a5fb53f1effb4c80a0 (patch) | |
tree | 43a35759616b1501774b1c7eceb05ebf2973f747 /src/Format | |
parent | fc89bf6e2cc1c34d705a73613f8d15df516ec009 (diff) | |
download | VeraCrypt-fede2cfa18b5cd8bb40f01a5fb53f1effb4c80a0.tar.gz VeraCrypt-fede2cfa18b5cd8bb40f01a5fb53f1effb4c80a0.zip |
Windows: Add checkbox in "VeraCrypt Format" to skip Rescue Disk verification during system encryption wizard
Diffstat (limited to 'src/Format')
-rw-r--r-- | src/Format/Format.rc | 8 | ||||
-rw-r--r-- | src/Format/Resource.h | 3 | ||||
-rw-r--r-- | src/Format/Tcformat.c | bin | 643202 -> 643534 bytes |
3 files changed, 7 insertions, 4 deletions
diff --git a/src/Format/Format.rc b/src/Format/Format.rc index 32da02eb..9e13a29b 100644 --- a/src/Format/Format.rc +++ b/src/Format/Format.rc @@ -266,9 +266,11 @@ IDD_SYSENC_RESCUE_DISK_CREATION_DLG DIALOGEX 0, 0, 226, 172 STYLE DS_SETFONT | DS_FIXEDSYS | DS_CONTROL | WS_CHILD
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
- EDITTEXT IDC_RESCUE_DISK_ISO_PATH,0,152,163,13,ES_AUTOHSCROLL
- PUSHBUTTON "Bro&wse...",IDC_BROWSE,166,151,59,14
- LTEXT "",IDT_RESCUE_DISK_INFO,0,1,225,145
+ EDITTEXT IDC_RESCUE_DISK_ISO_PATH,0,159,163,13,ES_AUTOHSCROLL
+ PUSHBUTTON "Bro&wse...",IDC_BROWSE,166,158,59,14
+ LTEXT "",IDT_RESCUE_DISK_INFO,0,1,225,137
+ CONTROL "Skip Rescue Disk verification",IDC_SKIP_RESCUE_VERIFICATION,
+ "Button",BS_AUTOCHECKBOX | WS_TABSTOP,0,145,106,10
END
IDD_SYSENC_COLLECTING_RANDOM_DATA_DLG DIALOGEX 0, 0, 226, 172
diff --git a/src/Format/Resource.h b/src/Format/Resource.h index d41c8f5e..6f0fdb1b 100644 --- a/src/Format/Resource.h +++ b/src/Format/Resource.h @@ -144,6 +144,7 @@ #define IDC_LINK_PIM_INFO 1105
#define IDC_SHOW_PIM 1106
#define IDC_TB 1107
+#define IDC_SKIP_RESCUE_VERIFICATION 1108
// Next default values for new objects
//
@@ -152,7 +153,7 @@ #define _APS_NO_MFC 1
#define _APS_NEXT_RESOURCE_VALUE 134
#define _APS_NEXT_COMMAND_VALUE 40001
-#define _APS_NEXT_CONTROL_VALUE 1108
+#define _APS_NEXT_CONTROL_VALUE 1109
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c Binary files differindex c49bc94b..0af4e001 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c |