1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef FONT_H
- #define FONT_H
- #include "common.h"
- #include "palcommon.h"
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- INT
- PAL_InitFont(
- BOOL fUseEmbeddedFonts
- );
- VOID
- PAL_FreeFont(
- VOID
- );
- VOID
- PAL_DrawCharOnSurface(
- WORD wChar,
- SDL_Surface *lpSurface,
- PAL_POS pos,
- BYTE bColor,
- BOOL fUse8x8Font
- );
- INT
- PAL_CharWidth(
- WORD wChar
- );
- INT
- PAL_FontHeight(
- VOID
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|