diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2013-06-22 17:34:53 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:18:19 +0100 |
commit | 03867fbf5653c0260e71271e0ddf46ed1045b488 (patch) | |
tree | 30e50899e075d4259eb7d807f9903c057bc86aec /src/Setup/Setup.h | |
parent | a630fae22ce0c942af9abdff28b87609909012d2 (diff) | |
download | VeraCrypt-03867fbf5653c0260e71271e0ddf46ed1045b488.tar.gz VeraCrypt-03867fbf5653c0260e71271e0ddf46ed1045b488.zip |
Modifications to remove all TrueCrypt references in names. generate new GUIDs for VeraCrypt. Replace "TRUE" by "VERA" in volume headers and driver magic word.
Diffstat (limited to 'src/Setup/Setup.h')
-rw-r--r-- | src/Setup/Setup.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/Setup/Setup.h b/src/Setup/Setup.h index fc1feb55..c391d5d1 100644 --- a/src/Setup/Setup.h +++ b/src/Setup/Setup.h @@ -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);
|