diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-20 14:59:57 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-20 15:31:22 +0100 |
commit | 02cbecff6450f37498c558c1352550d647bffdfa (patch) | |
tree | 4da0944db9e2a01c4e36ed128fc00fc7583c124f /src/Mount/Mount.c | |
parent | fbe1bbaffdac28b2f6868d2b2a4656d96d089371 (diff) | |
download | VeraCrypt-02cbecff6450f37498c558c1352550d647bffdfa.tar.gz VeraCrypt-02cbecff6450f37498c558c1352550d647bffdfa.zip |
Windows: Add a donation menu entry
Diffstat (limited to 'src/Mount/Mount.c')
-rw-r--r-- | src/Mount/Mount.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index f6fa82fa..969b43dc 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -6274,6 +6274,12 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa return 1;
}
+ if (lw == IDM_DONATE)
+ {
+ Applink ("donate", TRUE, "");
+ return 1;
+ }
+
if (lw == IDM_LICENSE)
{
TextInfoDialogBox (TC_TBXID_LEGAL_NOTICES);
|