1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #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
- );
- INT
- PAL_CharWidth(
- WORD wChar
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|