diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-05-02 19:59:50 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-05-03 08:25:22 +0200 |
commit | 98ff65045e7b6f6cda3bec644b5da4fd61bdf57a (patch) | |
tree | fb9f05fd240ec7439c512a0553599028283db0bc /src/Common/BootEncryption.h | |
parent | 143d6c1dde328c051200e754248906e145606b8a (diff) | |
download | VeraCrypt-98ff65045e7b6f6cda3bec644b5da4fd61bdf57a.tar.gz VeraCrypt-98ff65045e7b6f6cda3bec644b5da4fd61bdf57a.zip |
Windows: Support machines without "EFI\Boot" folder for EFI system encryption (e.g. Windows LTSB). Compatibility enhancements for EFI system encryption.
Diffstat (limited to 'src/Common/BootEncryption.h')
-rw-r--r-- | src/Common/BootEncryption.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Common/BootEncryption.h b/src/Common/BootEncryption.h index 5ce15362..58cdd2e0 100644 --- a/src/Common/BootEncryption.h +++ b/src/Common/BootEncryption.h @@ -235,7 +235,7 @@ namespace VeraCrypt class BootEncryption { public: - BootEncryption (HWND parent); + BootEncryption (HWND parent, bool postOOBE = false); ~BootEncryption (); enum FilterType @@ -343,6 +343,7 @@ namespace VeraCrypt bool RealSystemDriveSizeValid; bool RescueVolumeHeaderValid; bool VolumeHeaderValid; + bool PostOOBEMode; }; } |