--- truecrypt/boot/windows/bootconsoleio.h 2018/04/24 16:49:04 1.1 +++ truecrypt/boot/windows/bootconsoleio.h 2018/04/24 16:55:31 1.1.1.3 @@ -1,7 +1,7 @@ /* Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. - Governed by the TrueCrypt License 2.4 the full text of which is contained + Governed by the TrueCrypt License 2.5 the full text of which is contained in the file License.txt included in TrueCrypt binary and source code distribution packages. */ @@ -36,12 +36,15 @@ #define TC_BIOS_MAX_CHARS_PER_LINE 80 void Beep (); +void ClearBiosKeystrokeBuffer (); void ClearScreen (); void DisableScreenOutput (); void EnableScreenOutput (); +bool EscKeyPressed (); byte GetKeyboardChar (byte *scanCode = nullptr); +byte GetShiftFlags (); int GetString (char *buffer, size_t bufferSize); -void InitScreen (); +void InitVideoMode (); bool IsKeyboardCharAvailable (); bool IsLbaSupported (byte drive); bool IsPrintable (char c); @@ -59,6 +62,5 @@ void PrintHex (byte b); void PrintHex (uint16 data); void PrintHex (uint32 data); void PrintHex (const uint64 &data); -void SendToDebugPort (byte dataByte); #endif // TC_HEADER_Boot_BootConsoleIo