Advertisement
Guest User

Untitled

a guest
Aug 6th, 2010
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. #include "Crc.h"
  2. #include "Crypto.h"
  3. #include "Password.h"
  4. #include "Volumes.h"
  5.  
  6. #include "Platform.h"
  7. #include "Bios.h"
  8. #include "BootConfig.h"
  9. #include "BootMain.h"
  10. #include "BootDefs.h"
  11. #include "BootCommon.h"
  12. #include "BootConsoleIo.h"
  13. #include "BootDebug.h"
  14. #include "BootDiskIo.h"
  15. #include "BootEncryptedIo.h"
  16. #include "BootMemory.h"
  17. #include "BootStrings.h"
  18. #include "IntFilter.h"
  19.  
  20.  
  21. static void InitScreen ()
  22. {
  23.     ClearScreen();
  24.  
  25.     const char *title =
  26. #ifndef TC_WINDOWS_BOOT_RESCUE_DISK_MODE
  27.         " TrueCrypt Boot Loader "
  28. #else
  29.         " TrueCrypt Boot Loader "
  30. #endif
  31.         ;
  32.  
  33.     PrintEndl();
  34.     Print (title);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement