diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-17 12:14:58 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-17 12:16:16 +0200 |
commit | f72125ea71f98d0147bb742b48d1097844949c9e (patch) | |
tree | 836b63959937bb846553f7f851be9e5e405c1ea0 /src/Common/Cmdline.c | |
parent | 4695920b41e969bed138bfe2fe0d877b2abb36f6 (diff) | |
download | VeraCrypt-f72125ea71f98d0147bb742b48d1097844949c9e.tar.gz VeraCrypt-f72125ea71f98d0147bb742b48d1097844949c9e.zip |
Windows: First implementation of non-system volumes decryption.
Diffstat (limited to 'src/Common/Cmdline.c')
-rw-r--r-- | src/Common/Cmdline.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Cmdline.c b/src/Common/Cmdline.c index 178d938e..842a1e4c 100644 --- a/src/Common/Cmdline.c +++ b/src/Common/Cmdline.c @@ -55,6 +55,8 @@ BOOL CALLBACK CommandHelpDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM }
}
+ StringCbCatA (tmp, 8192, "\nExamples:\n\nMount a volume as X:\tveracrypt.exe /q /v volume.tc /l X\nDismount a volume X:\tveracrypt.exe /q /d X");
+
SetWindowText (GetDlgItem (hwndDlg, IDC_COMMANDHELP_TEXT), (char*) tmp);
TCfree(tmp);
|