ReactOS 0.4.16-dev-2110-ge3521eb
display.c File Reference
#include <hal.h>
#include <ndk/inbvfuncs.h>
Include dependency graph for display.c:

Go to the source code of this file.

Functions

VOID NTAPI HalAcquireDisplayOwnership (_In_ PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters)
 
VOID NTAPI HalDisplayString (_In_ PCSTR String)
 
VOID NTAPI HalQueryDisplayParameters (_Out_ PULONG DispSizeX, _Out_ PULONG DispSizeY, _Out_ PULONG CursorPosX, _Out_ PULONG CursorPosY)
 
VOID NTAPI HalSetDisplayParameters (_In_ ULONG CursorPosX, _In_ ULONG CursorPosY)
 

Function Documentation

◆ HalAcquireDisplayOwnership()

VOID NTAPI HalAcquireDisplayOwnership ( _In_ PHAL_RESET_DISPLAY_PARAMETERS  ResetDisplayParameters)

Definition at line 19 of file display.c.

21{
22 /* Stub since Windows XP implemented Inbv */
23 return;
24}

◆ HalDisplayString()

VOID NTAPI HalDisplayString ( _In_ PCSTR  String)

Definition at line 31 of file display.c.

33{
34 /* Call the Inbv driver */
36}
BOOLEAN NTAPI InbvDisplayString(_In_ PCSTR String)
Definition: inbv.c:335
_Must_inspect_result_ _In_ WDFDEVICE _In_ WDFSTRING String
Definition: wdfdevice.h:2439

◆ HalQueryDisplayParameters()

VOID NTAPI HalQueryDisplayParameters ( _Out_ PULONG  DispSizeX,
_Out_ PULONG  DispSizeY,
_Out_ PULONG  CursorPosX,
_Out_ PULONG  CursorPosY 
)

Definition at line 43 of file display.c.

48{
49 /* Stub since Windows XP implemented Inbv */
50 return;
51}

◆ HalSetDisplayParameters()

VOID NTAPI HalSetDisplayParameters ( _In_ ULONG  CursorPosX,
_In_ ULONG  CursorPosY 
)

Definition at line 58 of file display.c.

61{
62 /* Stub since Windows XP implemented Inbv */
63 return;
64}