2002-01-10 01:01:27 +00:00
|
|
|
/*
|
2006-11-29 08:28:20 +00:00
|
|
|
* PROJECT: ReactOS HAL
|
2006-11-14 20:59:48 +00:00
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
2006-11-29 08:28:20 +00:00
|
|
|
* FILE: hal/halx86/generic/display.c
|
2006-11-14 20:59:48 +00:00
|
|
|
* PURPOSE: Screen Display Routines, now useless since NT 5.1+
|
|
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
2002-01-10 01:01:27 +00:00
|
|
|
*/
|
2003-06-21 14:25:30 +00:00
|
|
|
|
2004-07-20 21:25:36 +00:00
|
|
|
#include <hal.h>
|
2005-06-19 22:53:49 +00:00
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
2006-10-09 04:00:34 +00:00
|
|
|
#include <ndk/inbvfuncs.h>
|
2001-08-21 20:18:27 +00:00
|
|
|
|
2006-11-29 08:28:20 +00:00
|
|
|
/* PUBLIC FUNCTIONS **********************************************************/
|
2003-06-21 14:25:30 +00:00
|
|
|
|
2001-08-21 20:18:27 +00:00
|
|
|
/*
|
2006-11-14 20:59:48 +00:00
|
|
|
* @implemented
|
2001-08-21 20:18:27 +00:00
|
|
|
*/
|
2006-11-14 20:59:48 +00:00
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
HalAcquireDisplayOwnership(IN PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters)
|
2001-08-21 20:18:27 +00:00
|
|
|
{
|
2006-11-14 20:59:48 +00:00
|
|
|
/* Stub since Windows XP implemented Inbv */
|
|
|
|
return;
|
2001-08-21 20:18:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-11-14 20:59:48 +00:00
|
|
|
* @implemented
|
2001-08-21 20:18:27 +00:00
|
|
|
*/
|
2006-11-14 20:59:48 +00:00
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
HalDisplayString(IN PCH String)
|
2001-08-21 20:18:27 +00:00
|
|
|
{
|
2006-11-14 20:59:48 +00:00
|
|
|
/* Call the Inbv driver */
|
|
|
|
InbvDisplayString(String);
|
2001-08-21 20:18:27 +00:00
|
|
|
}
|
|
|
|
|
2006-11-14 20:59:48 +00:00
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
VOID
|
|
|
|
NTAPI
|
2002-01-10 01:01:27 +00:00
|
|
|
HalQueryDisplayParameters(OUT PULONG DispSizeX,
|
2006-11-14 20:59:48 +00:00
|
|
|
OUT PULONG DispSizeY,
|
|
|
|
OUT PULONG CursorPosX,
|
|
|
|
OUT PULONG CursorPosY)
|
2001-08-21 20:18:27 +00:00
|
|
|
{
|
2006-11-14 20:59:48 +00:00
|
|
|
/* Stub since Windows XP implemented Inbv */
|
|
|
|
return;
|
2001-08-21 20:18:27 +00:00
|
|
|
}
|
|
|
|
|
2006-11-14 20:59:48 +00:00
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
VOID
|
|
|
|
NTAPI
|
2002-01-10 01:01:27 +00:00
|
|
|
HalSetDisplayParameters(IN ULONG CursorPosX,
|
2006-11-14 20:59:48 +00:00
|
|
|
IN ULONG CursorPosY)
|
2001-08-21 20:18:27 +00:00
|
|
|
{
|
2006-11-14 20:59:48 +00:00
|
|
|
/* Stub since Windows XP implemented Inbv */
|
|
|
|
return;
|
2003-06-21 14:25:30 +00:00
|
|
|
}
|
|
|
|
|
2001-08-21 20:18:27 +00:00
|
|
|
/* EOF */
|