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.

65 lines
906 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. InbvDisplayString(String); // lets forward for now...
  29. }
  30. VOID
  31. HalQueryDisplayParameters (
  32. OUT PULONG WidthInCharacters,
  33. OUT PULONG HeightInLines,
  34. OUT PULONG CursorColumn,
  35. OUT PULONG CursorRow
  36. )
  37. {
  38. return;
  39. }
  40. VOID
  41. HalSetDisplayParameters (
  42. IN ULONG CursorColumn,
  43. IN ULONG CursorRow
  44. )
  45. {
  46. return;
  47. }