1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 19:08:26 -06:00

Modifications to remove all TrueCrypt references in names. generate new GUIDs for VeraCrypt. Replace "TRUE" by "VERA" in volume headers and driver magic word.

This commit is contained in:
Mounir IDRASSI
2013-06-22 17:34:53 +02:00
parent a630fae22c
commit 03867fbf56
46 changed files with 744 additions and 742 deletions

View File

@@ -19,28 +19,28 @@ extern "C" {
// Specifies what files to install, where (determined by the prefix), and in what order
static char *szFiles[]=
{
"ATrueCrypt User Guide.pdf",
"AVeraCrypt User Guide.pdf",
"ALicense.txt",
"ATrueCrypt.exe",
"ATrueCrypt Format.exe",
"Atruecrypt.sys",
"Atruecrypt-x64.sys",
"Dtruecrypt.sys",
"ATrueCrypt Setup.exe"
"AVeraCrypt.exe",
"AVeraCrypt Format.exe",
"Averacrypt.sys",
"Averacrypt-x64.sys",
"Dveracrypt.sys",
"AVeraCrypt Setup.exe"
};
// Specifies what files are included in self-extracting packages (no other files will be packaged or extracted).
static char *szCompressedFiles[]=
{
"TrueCrypt User Guide.pdf",
"VeraCrypt User Guide.pdf",
"License.txt",
"TrueCrypt.exe",
"TrueCrypt Format.exe",
"truecrypt.sys",
"truecrypt-x64.sys"
"VeraCrypt.exe",
"VeraCrypt Format.exe",
"veracrypt.sys",
"veracrypt-x64.sys"
};
#define FILENAME_64BIT_DRIVER "truecrypt-x64.sys"
#define FILENAME_64BIT_DRIVER "veracrypt-x64.sys"
#define NBR_COMPRESSED_FILES (sizeof(szCompressedFiles) / sizeof(szCompressedFiles[0]))
void localcleanup (void);