Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
660 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. bldrint.h
  5. Abstract:
  6. This module is the internal header file for the NT boot loader.
  7. Author:
  8. Andrew Ritz (andrewr) 12-Dec-2000
  9. Revision History:
  10. --*/
  11. #ifndef _BLDRINT_
  12. #define _BLDRINT_
  13. #define ASCI_CSI_OUT TEXT("\033[") // escape-leftbracket
  14. #define ATT_FG_BLUE 4
  15. #define ATT_FG_WHITE 7
  16. #define ATT_BG_BLUE (ATT_FG_BLUE << 4)
  17. #define ATT_BG_WHITE (ATT_FG_WHITE << 4)
  18. #define DEFATT (ATT_FG_WHITE | ATT_BG_BLUE)
  19. #define INVATT (ATT_FG_BLUE | ATT_BG_WHITE)
  20. #endif // _BLDRINT_