diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-06-28 18:12:17 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-06-28 18:12:17 +0200 |
commit | 47c081792c0e95dd8d85441d79d12565748497e3 (patch) | |
tree | 168e573800f99db86364e6b7816a4f3f2ec99751 /src/Common/Format.h | |
parent | e0e043157fac5242efd15baf467dcc21d06d5067 (diff) | |
download | VeraCrypt-47c081792c0e95dd8d85441d79d12565748497e3.tar.gz VeraCrypt-47c081792c0e95dd8d85441d79d12565748497e3.zip |
Windows: Add comboxbox to Format wizard to choose QuickFormat/FastCreate/FullFormat
This required changes to internal logic and addition of new UI strings
Diffstat (limited to 'src/Common/Format.h')
-rw-r--r-- | src/Common/Format.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Common/Format.h b/src/Common/Format.h index f5d65f14..826b8f6c 100644 --- a/src/Common/Format.h +++ b/src/Common/Format.h @@ -91,6 +91,11 @@ BOOL MoveFilePointer (HANDLE dev, LARGE_INTEGER offset); #define FILESYS_EXFAT 3 #define FILESYS_REFS 4 +#define FORMAT_TYPE_FULL 0 +#define FORMAT_TYPE_QUICK 1 +#define FORMAT_TYPE_FAST 2 + + #ifdef __cplusplus } #endif |