diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-12-30 09:39:41 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-01-09 00:29:57 +0100 |
commit | 11f0b99846e9ca497284b57425a845474f1c39bf (patch) | |
tree | 359707005ac09e64aa1d8f5e5004557e97205c16 /src | |
parent | 2e2d3e95965ee3a4ec133740593febf6d2030b89 (diff) | |
download | VeraCrypt-11f0b99846e9ca497284b57425a845474f1c39bf.tar.gz VeraCrypt-11f0b99846e9ca497284b57425a845474f1c39bf.zip |
Windows driver: move newly added field in VOLUME_PROPERTIES_STRUCT to the end for compatibility with previous version.
Diffstat (limited to 'src')
-rw-r--r-- | src/Common/Apidrvr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Apidrvr.h b/src/Common/Apidrvr.h index 5c6de908..2043a211 100644 --- a/src/Common/Apidrvr.h +++ b/src/Common/Apidrvr.h @@ -210,7 +210,6 @@ typedef struct BOOL hiddenVolume; BOOL readOnly; BOOL removable; - BOOL mountDisabled; BOOL partitionInInactiveSysEncScope; uint32 volumeHeaderFlags; unsigned __int64 totalBytesRead; @@ -221,6 +220,7 @@ typedef struct wchar_t wszLabel[33]; BOOL bDriverSetLabel; unsigned char volumeID[VOLUME_ID_SIZE]; + BOOL mountDisabled; } VOLUME_PROPERTIES_STRUCT; typedef struct |