mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
65 lines
1.2 KiB
C
65 lines
1.2 KiB
C
/*
|
|
* PROJECT: ReactOS HAL
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
|
* FILE: hal/halarm/generic/display.c
|
|
* PURPOSE: Screen Display Routines, now useless since NT 5.1+
|
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
|
*/
|
|
|
|
#include <hal.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
#include <ndk/inbvfuncs.h>
|
|
|
|
/* PUBLIC FUNCTIONS ***********************************************************/
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
VOID
|
|
NTAPI
|
|
HalAcquireDisplayOwnership(IN PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters)
|
|
{
|
|
/* Stub since Windows XP implemented Inbv */
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
VOID
|
|
NTAPI
|
|
HalDisplayString(IN PCH String)
|
|
{
|
|
/* Call the Inbv driver */
|
|
InbvDisplayString(String);
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
VOID
|
|
NTAPI
|
|
HalQueryDisplayParameters(OUT PULONG DispSizeX,
|
|
OUT PULONG DispSizeY,
|
|
OUT PULONG CursorPosX,
|
|
OUT PULONG CursorPosY)
|
|
{
|
|
/* Stub since Windows XP implemented Inbv */
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
VOID
|
|
NTAPI
|
|
HalSetDisplayParameters(IN ULONG CursorPosX,
|
|
IN ULONG CursorPosY)
|
|
{
|
|
/* Stub since Windows XP implemented Inbv */
|
|
return;
|
|
}
|
|
|
|
/* EOF */
|