|
ReactOS 0.4.16-dev-1946-g52006dd
|


Go to the source code of this file.
Classes | |
| struct | tagBITMAPINFOHEADER |
Macros | |
| #define | BOOTCHAR_HEIGHT 13 |
| #define | BOOTCHAR_WIDTH 8 |
| #define | BI_RGB 0 |
| #define | BI_RLE4 2 |
| #define | RGB(r, g, b) ((RGBQUAD)(((UCHAR)(b) | ((USHORT)((UCHAR)(g))<<8)) | (((ULONG)(UCHAR)(r))<<16))) |
| #define | GetRValue(quad) ((UCHAR)(((quad)>>16) & 0xFF)) |
| #define | GetGValue(quad) ((UCHAR)(((quad)>>8) & 0xFF)) |
| #define | GetBValue(quad) ((UCHAR)((quad) & 0xFF)) |
| #define | InitializePalette() InitPaletteWithTable((PULONG)VidpDefaultPalette, BV_MAX_COLORS) |
| #define | GetFontPtr(_Char) (&VidpFontData[(_Char) * BOOTCHAR_HEIGHT]) |
| #define | FONT_PTR_DELTA (1) |
Typedefs | |
| typedef struct tagBITMAPINFOHEADER | BITMAPINFOHEADER |
| typedef struct tagBITMAPINFOHEADER * | PBITMAPINFOHEADER |
| typedef ULONG | RGBQUAD |
Variables | |
| UCHAR | VidpTextColor |
| ULONG | VidpCurrentX |
| ULONG | VidpCurrentY |
| ULONG | VidpScrollRegion [4] |
| UCHAR | VidpFontData [256 *BOOTCHAR_HEIGHT] |
| const RGBQUAD | VidpDefaultPalette [BV_MAX_COLORS] |
| #define BI_RGB 0 |
| #define BI_RLE4 2 |
| #define GetFontPtr | ( | _Char | ) | (&VidpFontData[(_Char) * BOOTCHAR_HEIGHT]) |
| #define InitializePalette | ( | ) | InitPaletteWithTable((PULONG)VidpDefaultPalette, BV_MAX_COLORS) |
| typedef struct tagBITMAPINFOHEADER * PBITMAPINFOHEADER |
|
extern |
Definition at line 16 of file common.c.
Referenced by VidDisplayString(), VidInitialize(), VidResetDisplay(), and VidSetScrollRegion().
|
extern |
Definition at line 17 of file common.c.
Referenced by VidDisplayString(), VidInitialize(), VidResetDisplay(), and VidSetScrollRegion().
|
extern |
Definition at line 32 of file common.c.
Referenced by InitPaletteWithTable(), and VidpBuildColor().
|
extern |
Definition at line 16 of file fontdata.c.
Referenced by DisplayCharacter().
|
extern |
Definition at line 19 of file common.c.
Referenced by DoScroll(), VidDisplayString(), and VidSetScrollRegion().
|
extern |
Definition at line 14 of file common.c.
Referenced by VidDisplayString(), and VidSetTextColor().