diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-07-01 23:32:44 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-07-01 23:32:44 +0200 |
commit | 580423b5dde31a1f5582ac4aa84c9deca6c2c261 (patch) | |
tree | e3b72a5dfdf96763684087432c44fde42a1f0191 /src | |
parent | 7a3daa389cf74d7a2439d943c63a888b62abfeb9 (diff) | |
download | VeraCrypt-580423b5dde31a1f5582ac4aa84c9deca6c2c261.tar.gz VeraCrypt-580423b5dde31a1f5582ac4aa84c9deca6c2c261.zip |
Windows: Add missing header changes needed for previous commit
Diffstat (limited to 'src')
-rw-r--r-- | src/Common/Format.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/Format.h b/src/Common/Format.h index 204feee1..0a42e5c8 100644 --- a/src/Common/Format.h +++ b/src/Common/Format.h @@ -75,8 +75,8 @@ FORMAT_VOL_PARAMETERS; extern int FormatWriteBufferSize; int TCFormatVolume (volatile FORMAT_VOL_PARAMETERS *volParams); -int FormatNtfs (int driveNo, int clusterSize); -int FormatFs (int driveNo, int clusterSize, int fsType); +int FormatNtfs (int driveNo, int clusterSize, BOOL bFallBackExternal); +int FormatFs (int driveNo, int clusterSize, int fsType, BOOL bFallBackExternal); int ExternalFormatFs (int driveNo, int clusterSize, int fsType); LPCWSTR FormatExGetMessage (int command); uint64 GetVolumeDataAreaSize (BOOL hiddenVolume, uint64 volumeSize); |