blob: ef26a4e63094f7f0f6d49db15c46b9bd459fd4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* PARSEC HEADER: do_font.h
*/
#ifndef _DO_FONT_H_
#define _DO_FONT_H_
// do_font.c implements the following functions
// --------------------------------------------
// void D_SetWStrContext( char *charset, dword *geometry, char *outseg, dword width, dword height );
// void D_WriteString( const char *string, ugrid_t putx, ugrid_t puty );
// void D_WriteTrString( const char *string, ugrid_t putx, ugrid_t puty, dword brightx );
// int D_GetPStringWidth( char *string );
// void D_TexfontWrite( const char *string, IterTexfont *itexfont );
// int D_TexfontGetWidth( const char *string, IterTexfont *itexfont );
// do_font.c implements the following variables
// --------------------------------------------
// dword Char16x16Geom[];
// dword Char08x08Geom[];
// dword Char04x09Geom[];
// dword CharGoldGeom[];
// char * CharsetDataBase;
#endif // _DO_FONT_H_
|