diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-08-25 11:42:01 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-16 01:33:11 +0200 |
commit | 4d7dc3ba25f562bea4be8898f11a97e911c48b99 (patch) | |
tree | 3a88d9a447e86a66017c145949e30406bdbf556c /src/Common/Format.h | |
parent | 85c1bc34e39a5e7682778c53ce68d6768346999c (diff) | |
download | VeraCrypt-4d7dc3ba25f562bea4be8898f11a97e911c48b99.tar.gz VeraCrypt-4d7dc3ba25f562bea4be8898f11a97e911c48b99.zip |
Windows: first implementation of CLI support for creating volumes.
Diffstat (limited to 'src/Common/Format.h')
-rw-r--r-- | src/Common/Format.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Common/Format.h b/src/Common/Format.h index 20346876..3c39bec4 100644 --- a/src/Common/Format.h +++ b/src/Common/Format.h @@ -38,11 +38,13 @@ typedef struct unsigned int clusterSize;
BOOL sparseFileSwitch;
BOOL quickFormat;
- int sectorSize;
+ DWORD sectorSize;
int *realClusterSize;
Password *password;
int pim;
HWND hwndDlg;
+ BOOL bForceOperation;
+ BOOL bGuiMode;
}
FORMAT_VOL_PARAMETERS;
|