diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-11-27 00:13:25 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-11-27 00:15:51 +0100 |
commit | 14a477026d6c9f3a549ba0dcc07955a8c70becfb (patch) | |
tree | 07604b56730190a4e0a9109e68e1b3cc9fbed295 /src/Common/Dlgcode.h | |
parent | 79eea6e5b1fd1300729d31b7ccda6a4718b4b81b (diff) | |
download | VeraCrypt-14a477026d6c9f3a549ba0dcc07955a8c70becfb.tar.gz VeraCrypt-14a477026d6c9f3a549ba0dcc07955a8c70becfb.zip |
Windows: compatibility with multi-OS boot configuration by only setting VeraCrypt as first bootloader of the system if the current first bootloader is Windows one.
Diffstat (limited to 'src/Common/Dlgcode.h')
-rw-r--r-- | src/Common/Dlgcode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Dlgcode.h b/src/Common/Dlgcode.h index f17ce22e..ff45fef6 100644 --- a/src/Common/Dlgcode.h +++ b/src/Common/Dlgcode.h @@ -509,7 +509,9 @@ BOOL InitSecurityTokenLibrary (HWND hwndDlg); BOOL FileHasReadOnlyAttribute (const wchar_t *path); BOOL IsFileOnReadOnlyFilesystem (const wchar_t *path); void CheckFilesystem (HWND hwndDlg, int driveNo, BOOL fixErrors); +BOOL BufferContainsPattern (const byte *buffer, size_t bufferSize, const byte *pattern, size_t patternSize); BOOL BufferContainsString (const byte *buffer, size_t bufferSize, const char *str); +BOOL BufferContainsWideString (const byte *buffer, size_t bufferSize, const wchar_t *str); int AskNonSysInPlaceEncryptionResume (HWND hwndDlg, BOOL* pbDecrypt); BOOL RemoveDeviceWriteProtection (HWND hwndDlg, wchar_t *devicePath); void EnableElevatedCursorChange (HWND parent); |