windows-nt/Source/XPSP1/NT/base/hals/halia64/ia64/xxdisp.c
2020-09-26 16:20:57 +08:00

72 lines
911 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
xxdisp.c
Abstract:
This module implements the HAL display initialization and output routines
for a x86 system.
Author:
David N. Cutler (davec) 27-Apr-1991
Environment:
Kernel mode
Revision History:
--*/
#include "halp.h"
#include <inbv.h>
VOID
HalAcquireDisplayOwnership (
IN PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters
)
{
return;
}
VOID
HalDisplayString (
PUCHAR String
)
{
//
// forward the call to the graphical boot driver...
//
InbvDisplayString(String);
} // HalDisplayString()
VOID
HalQueryDisplayParameters (
OUT PULONG WidthInCharacters,
OUT PULONG HeightInLines,
OUT PULONG CursorColumn,
OUT PULONG CursorRow
)
{
return;
}
VOID
HalSetDisplayParameters (
IN ULONG CursorColumn,
IN ULONG CursorRow
)
{
return;
}