diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-12-25 16:18:19 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-12-25 16:18:19 +0100 |
commit | 81f0adcc35fb5a8e0d01f361f9bea4716db452ff (patch) | |
tree | 52ac1b7dad5ba84d50c40a3e757a79ca89fcd549 /src/Driver | |
parent | 283059523dd5d57f275390c0768417c00fc26adf (diff) | |
download | VeraCrypt-81f0adcc35fb5a8e0d01f361f9bea4716db452ff.tar.gz VeraCrypt-81f0adcc35fb5a8e0d01f361f9bea4716db452ff.zip |
Windows Driver: set Windows 10 version 1809 as minimum.
To support this, we had to replace ExAllocatePool2 by ExAllocatePoolUninitialized.
Diffstat (limited to 'src/Driver')
-rw-r--r-- | src/Driver/Driver.vcxproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Driver/Driver.vcxproj b/src/Driver/Driver.vcxproj index 7f135b35..60585351 100644 --- a/src/Driver/Driver.vcxproj +++ b/src/Driver/Driver.vcxproj @@ -37,7 +37,7 @@ <ConfigurationType>Driver</ConfigurationType> <DriverType>WDM</DriverType> <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <TargetVersion>Windows10</TargetVersion> @@ -46,7 +46,7 @@ <ConfigurationType>Driver</ConfigurationType> <DriverType>WDM</DriverType> <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration"> <TargetVersion>Windows10</TargetVersion> @@ -55,7 +55,7 @@ <ConfigurationType>Driver</ConfigurationType> <DriverType>WDM</DriverType> <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration"> <TargetVersion>Windows10</TargetVersion> @@ -64,7 +64,7 @@ <ConfigurationType>Driver</ConfigurationType> <DriverType>WDM</DriverType> <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> |