diff options
Diffstat (limited to 'src/Setup/Setup.h')
-rw-r--r-- | src/Setup/Setup.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Setup/Setup.h b/src/Setup/Setup.h index e38dd75a..a8eae4a9 100644 --- a/src/Setup/Setup.h +++ b/src/Setup/Setup.h @@ -1,79 +1,81 @@ /* Legal Notice: Some portions of the source code contained in this file were derived from the source code of TrueCrypt 7.1a, which is Copyright (c) 2003-2012 TrueCrypt Developers Association and which is governed by the TrueCrypt License 3.0, also from the source code of Encryption for the Masses 2.02a, which is Copyright (c) 1998-2000 Paul Le Roux and which is governed by the 'License Agreement for Encryption for the Masses' Modifications and additions to the original source code (contained in this file) and all other portions of this file are Copyright (c) 2013-2017 IDRIX and are governed by the Apache License 2.0 the full text of which is contained in the file License.txt included in VeraCrypt binary and source code distribution packages. */ #ifndef SETUP_H #define SETUP_H #ifdef __cplusplus extern "C" { #endif // Specifies what files to install, where (determined by the prefix), and in what order static wchar_t *szFiles[]= { L"ALicense.txt", L"ALICENSE", L"ANOTICE", + L"Apassword1000000.txt", L"AVeraCrypt.exe", L"AVeraCryptExpander.exe", L"AVeraCrypt Format.exe", L"Averacrypt.inf", L"Averacrypt.cat", L"Averacrypt.sys", L"Dveracrypt.sys", L"AVeraCrypt Setup.exe", L"XLanguages.zip", L"Xdocs.zip", }; // Specifies what files are included in self-extracting packages (no other files will be packaged or extracted). static wchar_t *szCompressedFiles[]= { L"License.txt", L"LICENSE", L"NOTICE", + L"password1000000.txt", L"VeraCrypt.exe", L"VeraCryptExpander.exe", L"VeraCrypt Format.exe", L"VeraCrypt-x64.exe", L"VeraCryptExpander-x64.exe", L"VeraCrypt Format-x64.exe", L"VeraCrypt-arm64.exe", L"VeraCryptExpander-arm64.exe", L"VeraCrypt Format-arm64.exe", L"veracrypt.inf", L"veracrypt.cat", L"veracrypt.sys", L"veracrypt-x64.cat", L"veracrypt-x64.sys", L"veracrypt-arm64.cat", L"veracrypt-arm64.sys", L"Languages.zip", L"docs.zip" }; // Specifies what legacy files to remove during install static wchar_t *szLegacyFiles[]= { L"VeraCrypt-x86.exe", L"VeraCryptExpander-x86.exe", L"VeraCrypt Format-x86.exe", L"VeraCrypt-x64.exe", L"VeraCryptExpander-x64.exe", L"VeraCrypt Format-x64.exe", L"veracrypt-x64.sys", }; #define FILENAME_64BIT_DRIVER L"veracrypt-x64.sys" #define NBR_COMPRESSED_FILES (sizeof(szCompressedFiles) / sizeof(szCompressedFiles[0])) |