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.

71 lines
982 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. xxdisp.c
  5. Abstract:
  6. This module implements the HAL display initialization and output routines
  7. for a x86 system.
  8. Author:
  9. David N. Cutler (davec) 27-Apr-1991
  10. Environment:
  11. Kernel mode
  12. Revision History:
  13. --*/
  14. #include "halp.h"
  15. #include <inbv.h>
  16. VOID
  17. HalAcquireDisplayOwnership (
  18. IN PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters
  19. )
  20. {
  21. return;
  22. }
  23. VOID
  24. HalDisplayString (
  25. PUCHAR String
  26. )
  27. {
  28. //
  29. // forward the call to the graphical boot driver...
  30. //
  31. InbvDisplayString(String);
  32. } // HalDisplayString()
  33. VOID
  34. HalQueryDisplayParameters (
  35. OUT PULONG WidthInCharacters,
  36. OUT PULONG HeightInLines,
  37. OUT PULONG CursorColumn,
  38. OUT PULONG CursorRow
  39. )
  40. {
  41. return;
  42. }
  43. VOID
  44. HalSetDisplayParameters (
  45. IN ULONG CursorColumn,
  46. IN ULONG CursorRow
  47. )
  48. {
  49. return;
  50. }