ReactOS 0.4.16-dev-2104-gb84fa49
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#include <ndk/inbvfuncs.h>
11
12/* PUBLIC FUNCTIONS **********************************************************/
13
14/*
15 * @implemented
16 */
17VOID
20 _In_ PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters)
21{
22 /* Stub since Windows XP implemented Inbv */
23 return;
24}
25
26/*
27 * @implemented
28 */
29VOID
33{
34 /* Call the Inbv driver */
36}
37
38/*
39 * @implemented
40 */
41VOID
44 _Out_ PULONG DispSizeX,
45 _Out_ PULONG DispSizeY,
46 _Out_ PULONG CursorPosX,
47 _Out_ PULONG CursorPosY)
48{
49 /* Stub since Windows XP implemented Inbv */
50 return;
51}
52
53/*
54 * @implemented
55 */
56VOID
59 _In_ ULONG CursorPosX,
60 _In_ ULONG CursorPosY)
61{
62 /* Stub since Windows XP implemented Inbv */
63 return;
64}
65
66/* EOF */
VOID NTAPI HalSetDisplayParameters(_In_ ULONG CursorPosX, _In_ ULONG CursorPosY)
Definition: display.c:58
VOID NTAPI HalQueryDisplayParameters(_Out_ PULONG DispSizeX, _Out_ PULONG DispSizeY, _Out_ PULONG CursorPosX, _Out_ PULONG CursorPosY)
Definition: display.c:43
VOID NTAPI HalAcquireDisplayOwnership(_In_ PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters)
Definition: display.c:19
VOID NTAPI HalDisplayString(_In_ PCSTR String)
Definition: display.c:31
BOOLEAN NTAPI InbvDisplayString(_In_ PCSTR String)
Definition: inbv.c:335
#define _Out_
Definition: no_sal2.h:160
#define _In_
Definition: no_sal2.h:158
uint32_t * PULONG
Definition: typedefs.h:59
#define NTAPI
Definition: typedefs.h:36
const char * PCSTR
Definition: typedefs.h:52
uint32_t ULONG
Definition: typedefs.h:59
_Must_inspect_result_ _In_ WDFDEVICE _In_ WDFSTRING String
Definition: wdfdevice.h:2439