ReactOS 0.4.15-dev-7924-g5949c20
display.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS HAL
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: hal/halx86/generic/display.c
5 * PURPOSE: Screen Display Routines, now useless since NT 5.1+
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7 */
8
9#include <hal.h>
10#define NDEBUG
11#include <debug.h>
12#include <ndk/inbvfuncs.h>
13
14/* PUBLIC FUNCTIONS **********************************************************/
15
16/*
17 * @implemented
18 */
19VOID
21HalAcquireDisplayOwnership(IN PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters)
22{
23 /* Stub since Windows XP implemented Inbv */
24 return;
25}
26
27/*
28 * @implemented
29 */
30VOID
33{
34 /* Call the Inbv driver */
36}
37
38/*
39 * @implemented
40 */
41VOID
44 OUT PULONG DispSizeY,
45 OUT PULONG CursorPosX,
46 OUT PULONG CursorPosY)
47{
48 /* Stub since Windows XP implemented Inbv */
49 return;
50}
51
52/*
53 * @implemented
54 */
55VOID
58 IN ULONG CursorPosY)
59{
60 /* Stub since Windows XP implemented Inbv */
61 return;
62}
63
64/* EOF */
VOID NTAPI HalDisplayString(IN PCH String)
Definition: display.c:32
VOID NTAPI HalAcquireDisplayOwnership(IN PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters)
Definition: display.c:21
VOID NTAPI HalSetDisplayParameters(IN ULONG CursorPosX, IN ULONG CursorPosY)
Definition: display.c:57
VOID NTAPI HalQueryDisplayParameters(OUT PULONG DispSizeX, OUT PULONG DispSizeY, OUT PULONG CursorPosX, OUT PULONG CursorPosY)
Definition: display.c:43
BOOLEAN NTAPI InbvDisplayString(_In_ PCHAR String)
Definition: inbv.c:332
CHAR * PCH
Definition: ntbasedef.h:391
uint32_t * PULONG
Definition: typedefs.h:59
#define NTAPI
Definition: typedefs.h:36
#define IN
Definition: typedefs.h:39
uint32_t ULONG
Definition: typedefs.h:59
#define OUT
Definition: typedefs.h:40
_Must_inspect_result_ _In_ WDFDEVICE _In_ WDFSTRING String
Definition: wdfdevice.h:2433