VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/Common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Common.h')
-rw-r--r--src/Common/Common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Common/Common.h b/src/Common/Common.h
index 421d8239..62ee3d65 100644
--- a/src/Common/Common.h
+++ b/src/Common/Common.h
@@ -23,6 +23,8 @@
#define VOLUME_ID_SIZE SHA256_DIGESTSIZE
+#define ALIGN_VALUE(value, alignment) (((alignment) == 0)? (value) : (((value) + ((alignment) - 1)) & ~((alignment) - 1)))
+
typedef enum
{
// IMPORTANT: If you add a new item here, update IsOSVersionAtLeast().
@@ -90,6 +92,8 @@ typedef struct
int ProtectedHidVolPkcs5Prf;
int ProtectedHidVolPim;
wchar_t Label[33]; /* maximum label length is 32 for NTFS and 11 for FAT32 */
+ BOOL DisableMountManager;
+ BOOL SkipCachedPasswords;
} MountOptions;
#endif