|
ReactOS 0.4.16-dev-1946-g52006dd
|
#include <stdio.h>#include <conio.h>#include <windows.h>
Go to the source code of this file.
Macros | |
| #define | FONT_NAME_DEF "Lucida Console" |
| #define | FONT_SIZE_DEF 10 |
| #define | X_OFFSET_DEF 0 |
| #define | Y_OFFSET_DEF 0 |
| #define | HEIGHT 13 |
| #define | WIDTH 8 |
Functions | |
| static void | DumpCharacterFontData (DWORD BmpBits[]) |
| static BOOL | PlotCharacter (HDC hDC, HFONT hFont, INT XOffset, INT YOffset, CHAR Character, DWORD BmpBits[]) |
| static void | DumpFont (LPSTR FontName, INT FontSize, INT XOffset, INT YOffset) |
| int | main (int argc, char **argv) |
| #define FONT_NAME_DEF "Lucida Console" |
Definition at line 18 of file bootvid_font_generator.c.
| #define FONT_SIZE_DEF 10 |
Definition at line 19 of file bootvid_font_generator.c.
| #define HEIGHT 13 |
Definition at line 23 of file bootvid_font_generator.c.
| #define WIDTH 8 |
Definition at line 24 of file bootvid_font_generator.c.
| #define X_OFFSET_DEF 0 |
Definition at line 20 of file bootvid_font_generator.c.
| #define Y_OFFSET_DEF 0 |
Definition at line 21 of file bootvid_font_generator.c.
Dump the FontData for the bootvid/i386/bootdata.c array.
Definition at line 54 of file bootvid_font_generator.c.
Referenced by DumpFont().
Definition at line 124 of file bootvid_font_generator.c.
Referenced by main().
Definition at line 172 of file bootvid_font_generator.c.
|
static |
Use GDI APIs to load a monospace font and plot a single character into a bitmap.
Definition at line 72 of file bootvid_font_generator.c.
Referenced by DumpFont().