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

Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.

This commit is contained in:
Mounir IDRASSI
2014-06-22 16:02:42 +02:00
parent 17823cb58c
commit 41a22ca4e7
239 changed files with 246 additions and 246 deletions

View File

@@ -19,7 +19,7 @@
using namespace std;
namespace TrueCrypt
namespace VeraCrypt
{
vector <FavoriteVolume> FavoriteVolumes;
vector <FavoriteVolume> SystemFavoriteVolumes;

View File

@@ -11,7 +11,7 @@
#include <Tcdefs.h>
namespace TrueCrypt
namespace VeraCrypt
{
struct FavoriteVolume
{

View File

@@ -18,7 +18,7 @@
#include "Mount.h"
#include "Password.h"
using namespace TrueCrypt;
using namespace VeraCrypt;
static volatile LONG ObjectCount = 0;

View File

@@ -46,7 +46,7 @@
#include "../Platform/Finally.h"
#include "../Platform/ForEach.h"
using namespace TrueCrypt;
using namespace VeraCrypt;
enum timer_ids
{

View File

@@ -109,7 +109,7 @@ static BOOL HandleDriveListMouseWheelEvent (UINT uMsg, WPARAM wParam, LPARAM lPa
}
void SetDriverConfigurationFlag (uint32 flag, BOOL state);
BOOL MountFavoriteVolumes (BOOL systemFavorites = FALSE, BOOL logOnMount = FALSE, BOOL hotKeyMount = FALSE, const TrueCrypt::FavoriteVolume &favoriteVolumeToMount = TrueCrypt::FavoriteVolume());
BOOL MountFavoriteVolumes (BOOL systemFavorites = FALSE, BOOL logOnMount = FALSE, BOOL hotKeyMount = FALSE, const VeraCrypt::FavoriteVolume &favoriteVolumeToMount = VeraCrypt::FavoriteVolume());
BOOL GetExecutableImageInformation (const string &path, string &version, string &description, string &companyName, string &productName);
#endif