|
ReactOS 0.4.16-dev-2122-g1628f5e
|
#include "precomp.h"
Go to the source code of this file.
Functions | |
| VOID NTAPI | VidResetDisplay (_In_ BOOLEAN SetMode) |
| ULONG NTAPI | VidSetTextColor (_In_ ULONG Color) |
| VOID NTAPI | VidSetScrollRegion (_In_ ULONG Left, _In_ ULONG Top, _In_ ULONG Right, _In_ ULONG Bottom) |
| VOID NTAPI | VidDisplayStringXY (_In_ PCSTR String, _In_ ULONG Left, _In_ ULONG Top, _In_ BOOLEAN Transparent) |
| VOID NTAPI | VidDisplayString (_In_ PCSTR String) |
Variables | |
| UCHAR | VidpTextColor = BV_COLOR_WHITE |
| ULONG | VidpCurrentX = 0 |
| ULONG | VidpCurrentY = 0 |
| URECT | VidpScrollRegion = {0, 0, SCREEN_WIDTH - 1, SCREEN_HEIGHT - 1} |
| static BOOLEAN | ClearRow = FALSE |
Definition at line 98 of file console.c.
Referenced by InbvDisplayString().
| VOID NTAPI VidDisplayStringXY | ( | _In_ PCSTR | String, |
| _In_ ULONG | Left, | ||
| _In_ ULONG | Top, | ||
| _In_ BOOLEAN | Transparent | ||
| ) |
Definition at line 74 of file console.c.
Definition at line 25 of file console.c.
Referenced by InbvResetDisplay(), and VidInitialize().
| VOID NTAPI VidSetScrollRegion | ( | _In_ ULONG | Left, |
| _In_ ULONG | Top, | ||
| _In_ ULONG | Right, | ||
| _In_ ULONG | Bottom | ||
| ) |
Definition at line 51 of file console.c.
Referenced by InbvSetScrollRegion().
Definition at line 38 of file console.c.
Referenced by InbvSetTextColor().
Definition at line 19 of file console.c.
Referenced by VidDisplayString().
| ULONG VidpCurrentX = 0 |
Definition at line 15 of file console.c.
Referenced by VidDisplayString(), VidInitialize(), VidResetDisplay(), and VidSetScrollRegion().
| ULONG VidpCurrentY = 0 |
Definition at line 16 of file console.c.
Referenced by VidDisplayString(), VidInitialize(), VidResetDisplay(), and VidSetScrollRegion().
| URECT VidpScrollRegion = {0, 0, SCREEN_WIDTH - 1, SCREEN_HEIGHT - 1} |
Definition at line 17 of file console.c.
Referenced by DoScroll(), VidDisplayString(), and VidSetScrollRegion().
| UCHAR VidpTextColor = BV_COLOR_WHITE |
Definition at line 14 of file console.c.
Referenced by VidDisplayString(), and VidSetTextColor().