1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Windows: Fix issue in UI for configuration autofix mechanism of bootloader

This commit is contained in:
Mounir IDRASSI
2020-08-03 17:15:00 +02:00
parent 9da8fc669b
commit bd78c9d0af
3 changed files with 35 additions and 29 deletions

View File

@@ -2645,6 +2645,16 @@ uint32 ReadDriverConfigurationFlags ()
return configMap;
}
uint32 ReadServiceConfigurationFlags ()
{
DWORD configMap;
if (!ReadLocalMachineRegistryDword (L"SYSTEM\\CurrentControlSet\\Services\\" TC_SYSTEM_FAVORITES_SERVICE_NAME, TC_SYSTEM_FAVORITES_SERVICE_NAME L"Config", &configMap))
configMap = 0;
return configMap;
}
uint32 ReadEncryptionThreadPoolFreeCpuCountLimit ()
{