From 1fd097c666be570fedf612ed7caa7e809881e072 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 13 Dec 2019 00:07:25 +0100 Subject: Windows: check "TrueCrypt Mode" in password dialog when mounting a file container with .tc extension --- src/Common/Dlgcode.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/Common/Dlgcode.c') diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index 5e2dc39a..350e3f46 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -7392,6 +7392,15 @@ BOOL CheckFileExtension (wchar_t *fileName) return FALSE; } +BOOL IsTrueCryptFileExtension (wchar_t *fileName) +{ + wchar_t *ext = wcsrchr (fileName, L'.'); + if (ext && !_wcsicmp (ext, L".tc")) + return TRUE; + else + return FALSE; +} + void CorrectFileName (wchar_t* fileName) { /* replace '/' by '\' */ -- cgit v1.2.3