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.

23 lines
614 B

  1. #ifndef __VMODE_H__
  2. #include "bldr.h"
  3. #define TXT_MOD 0x3
  4. #define GFX_MOD 0x12
  5. #define SET_VMODE(x) HW_CURSOR(0x80000000,x)
  6. void DummyDebugDelay (VOID);
  7. VOID BlRedrawGfxProgressBar(VOID); // Redraws the progress bar (with the last percentage)
  8. VOID BlUpdateGfxProgressBar(ULONG fPercentage);
  9. VOID LoadBootLogoBitmap (IN ULONG DriveId, PCHAR path); // Loads ntldr bitmap and initializes
  10. VOID DrawBitmap (VOID);
  11. VOID PaletteOff (VOID);
  12. VOID PaletteOn (VOID);
  13. VOID PrepareGfxProgressBar (VOID);
  14. VOID VgaEnableVideo();
  15. extern BOOLEAN DisplayLogoOnBoot;
  16. extern BOOLEAN GraphicsMode;
  17. #endif