VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Mount
AgeCommit message (Expand)AuthorFilesLines
2015-10-27Windows: fix wrong translation for "Reset" button in hotkeys dialogMounir IDRASSI1-3/+3
2015-10-18Windows: Ensure focus is always set to the drive list upon startupMounir IDRASSI1-0/+4
2015-10-15Windows: Solve lost focus for application after displaying the waiting dialogMounir IDRASSI1-2/+3
2015-10-15Windows: resize some GUI fields to avoid text truncation with non US language...Mounir IDRASSI1-1/+1
2015-10-15Windows: Set bPrebootPasswordDlgMode to FALSE at the correct code location.Mounir IDRASSI1-4/+2
2015-10-15Windows: correct wrong ID for keyfiles button in password dialogMounir IDRASSI1-1/+1
2015-10-07Increment version to 1.16. Update user guide PDF file.VeraCrypt_1.16Mounir IDRASSI1-4/+4
2015-10-07Windows: Add option t
/*
 Derived from source code of TrueCrypt 7.1a, which is
 Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed
 by the TrueCrypt License 3.0.

 Modifications and additions to the original source code (contained in this file)
 and all other portions of this file are Copyright (c) 2013-2016 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 TC_HEADER_Core_Unix_CoreServiceResponse
#define TC_HEADER_Core_Unix_CoreServiceResponse

#include "Platform/Serializable.h"
#include "Core/Core.h"

namespace VeraCrypt
{
	struct CoreServiceResponse : public Serializable
	{
	};

	struct CheckFilesystemResponse : CoreServiceResponse
	{
		CheckFilesystemResponse () { }
		TC_SERIALIZABLE (CheckFilesystemResponse);
	};

	struct DismountFilesystemResponse : CoreServiceResponse
	{
		DismountFilesystemResponse () { }
		TC_SERIALIZABLE (DismountFilesystemResponse);
	};

	struct DismountVolumeResponse : CoreServiceResponse
	{
		DismountVolumeResponse () { }
		TC_SERIALIZABLE (DismountVolumeResponse);

		shared_ptr <VolumeInfo> DismountedVolumeInfo;
	};

	struct GetDeviceSectorSizeResponse : CoreServiceResponse
	{
		GetDeviceSectorSizeResponse () { }
		GetDeviceSectorSizeResponse (uint32 size) : Size (size) { }
		TC_SERIALIZABLE (GetDeviceSectorSizeResponse);

		uint32 Size;
	};

	struct GetDeviceSizeResponse : CoreServiceResponse
	{
		GetDeviceSizeResponse () { }
		GetDeviceSizeResponse (uint64 size) : Size (size) { }
		TC_SERIALIZABLE (GetDeviceSizeResponse);

		uint64 Size;
	};

	struct GetHostDevicesResponse : CoreServiceResponse
	{
		GetHostDevicesResponse () { }
		GetHostDevicesResponse (const HostDeviceList &hostDevices) : HostDevices (hostDevices) { }
		TC_SERIALIZABLE (GetHostDevicesResponse);

		HostDeviceList HostDevices;
	};

	struct MountVolumeResponse : CoreServiceResponse
	{
		MountVolumeResponse () { }
		MountVolumeResponse (shared_ptr <VolumeInfo> volumeInfo) : MountedVolumeInfo (volumeInfo) { }
		TC_SERIALIZABLE (MountVolumeResponse);

		shared_ptr <VolumeInfo> MountedVolumeInfo;
	};

	struct SetFileOwnerResponse : CoreServiceResponse
	{
		SetFileOwnerResponse () { }
		TC_SERIALIZABLE (SetFileOwnerResponse);
	};
}

#endif // TC_HEADER_Core_Unix_CoreServiceResponse
h=VeraCrypt_1.24-Update5&id=5db8cdb98feec153c180f1ae33dd095b53260676'>Increment version to 1.13
VeraCrypt_1.13
Mounir IDRASSI1-4/+4
2015-08-06Increment version to 1.12. Update user guide PDF file.Mounir IDRASSI1-4/+4
2015-08-06Update license information to reflect the use of a dual license Apache 2.0 an...Mounir IDRASSI9-47/+79
2015-07-29Windows: Implement Evil-Maid-Attack detection mechanism. Write the correct bo...Mounir IDRASSI1-4/+11
2015-07-13Windows: on 64-bit Windows, more System favorite service from SysWoW64 to Sys...Mounir IDRASSI1-5/+5
2015-07-13Windows: workaround to solve system favorites failing to mount because underl...Mounir IDRASSI1-122/+183
2015-07-13Windows: Modify PIM parts in GUI to make it easier to use. Users must explici...Mounir IDRASSI3-10/+88
2015-07-13Windows: Set longer wait hint time for System Favorites Service to avoid bein...Mounir IDRASSI1-8/+81
2015-07-11Use Pim name for internal variables instead of the old name PinMounir IDRASSI7-134/+134
2015-07-08Windows: Fix old issue inherited from TrueCrypt by initializing COM library b...Mounir IDRASSI1-0/+4
2015-07-08Windows: Disable Set Key Header Algorithm item in "Volumes" menu when the sys...Mounir IDRASSI1-0/+14
2015-07-07Windows: Disable menu item for changing system header key derivation algorith...Mounir IDRASSI1-1/+4