diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-23 11:57:25 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-23 14:52:12 +0200 |
commit | 3dfd4a533264807898a2d1b58f113ba48ee6f13d (patch) | |
tree | 6b0185e853ba7ce1d52bea917af13d2e7bb59962 /src/Mount | |
parent | 7cc2a3527dd27f49f617c4bfb915fd00098801ab (diff) | |
download | VeraCrypt-3dfd4a533264807898a2d1b58f113ba48ee6f13d.tar.gz VeraCrypt-3dfd4a533264807898a2d1b58f113ba48ee6f13d.zip |
Windows: display notice about creating new Rescue Disk at first boot after upgrade.
Diffstat (limited to 'src/Mount')
-rw-r--r-- | src/Mount/Mount.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 51a7c98a..b3773b1a 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -8531,6 +8531,10 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa ShowWindow (hwndDlg, SW_RESTORE); return 1; + case VC_APPMSG_CREATE_RESCUE_DISK: + CreateRescueDisk (hwndDlg); + return 1; + case WM_COPYDATA: { PCOPYDATASTRUCT cd = (PCOPYDATASTRUCT)lParam; |