diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /src/parsec/include/d_font.h | |
| download | openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.tar.xz openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.zip | |
Diffstat (limited to 'src/parsec/include/d_font.h')
| -rw-r--r-- | src/parsec/include/d_font.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/parsec/include/d_font.h b/src/parsec/include/d_font.h new file mode 100644 index 0000000..410f6c7 --- /dev/null +++ b/src/parsec/include/d_font.h @@ -0,0 +1,24 @@ +/* + * PARSEC HEADER: d_font.h + */ + +#ifndef _D_FONT_H_ +#define _D_FONT_H_ + + +// ---------------------------------------------------------------------------- +// DRAWING SUBSYSTEM (D) FONT group - +// ---------------------------------------------------------------------------- + + +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 ); + + +#endif // _D_FONT_H_ + + |
