diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-01-02 21:45:36 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-01-02 21:52:39 +0100 |
commit | 88e4a6cb0dd6712783383c050ebb114141d6b8c7 (patch) | |
tree | 656b9c6cda3cf7187b628ac6ab4afd1b1e4c947f /src/Common/Dlgcode.h | |
parent | 88955393b20b71431cc23735f959cb540537f632 (diff) | |
download | VeraCrypt-88e4a6cb0dd6712783383c050ebb114141d6b8c7.tar.gz VeraCrypt-88e4a6cb0dd6712783383c050ebb114141d6b8c7.zip |
Windows: Restore support of Windows 7, 8/8.1 by using single attestation signature for driver and add checks on needed KBs for Windows Vista and Windows 7. Add signed driver files.
- Windows 7 needs KB3033929 or KB4474419
- Windows Vista needs KB4039648 or KB4474419
Diffstat (limited to 'src/Common/Dlgcode.h')
-rw-r--r-- | src/Common/Dlgcode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Common/Dlgcode.h b/src/Common/Dlgcode.h index 3d521a21..362b2d6d 100644 --- a/src/Common/Dlgcode.h +++ b/src/Common/Dlgcode.h @@ -495,6 +495,7 @@ void Debug (char *format, ...); void DebugMsgBox (char *format, ...); BOOL IsOSAtLeast (OSVersionEnum reqMinOS); BOOL IsOSVersionAtLeast (OSVersionEnum reqMinOS, int reqMinServicePack); +BOOL IsSupportedOS (); BOOL Is64BitOs (); BOOL IsARM(); BOOL IsServerOS (); @@ -774,6 +775,8 @@ public: }; BOOL GetHibernateStatus (BOOL& bHibernateEnabled, BOOL& bHiberbootEnabled); +bool GetKbList (std::vector<std::wstring>& kbList); +bool OneOfKBsInstalled (const wchar_t* szKBs[], int count); #endif // __cplusplus |