diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-19 11:25:25 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-20 23:23:16 +0200 |
commit | fe26ed8a5d224b133c48e2846b851d585460ad30 (patch) | |
tree | b62288613dd14f293dc1cd818122cba51a50709a /src/Common/Dlgcode.h | |
parent | d78a3d02737d230e30139498125415444f65e78c (diff) | |
download | VeraCrypt-fe26ed8a5d224b133c48e2846b851d585460ad30.tar.gz VeraCrypt-fe26ed8a5d224b133c48e2846b851d585460ad30.zip |
Windows: in case of mounting system favorites, call driver to get list of drives instead of using SetupAPI in order to fix some rare issues where some disks were not detected at boot.
Diffstat (limited to 'src/Common/Dlgcode.h')
-rw-r--r-- | src/Common/Dlgcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Dlgcode.h b/src/Common/Dlgcode.h index 47ab035d..d2db4ba4 100644 --- a/src/Common/Dlgcode.h +++ b/src/Common/Dlgcode.h @@ -625,9 +625,9 @@ void CorrectFileName (std::wstring& fileName); inline std::wstring AppendSrcPos (const wchar_t* msg, const char* srcPos) { return std::wstring (msg? msg : L"") + L"\n\nSource: " + SingleStringToWide (srcPos); } -void UpdateMountableHostDeviceList (); +void UpdateMountableHostDeviceList (bool bFromService); INT_PTR TextEditDialogBox (BOOL readOnly, HWND parent, const WCHAR* Title, std::string& text); // Display a wait dialog while calling the provided callback with the given parameter typedef void (CALLBACK* WaitThreadProc)(void* pArg, HWND hWaitDlg); |