Added newline to file (seeing tinderbox burn...) and

declared the BMF_Font struct for proper headerfile handling.
This commit is contained in:
Rob Haarsma
2003-07-15 15:09:40 +00:00
parent 288f37903b
commit aec17932a0

View File

@@ -33,6 +33,8 @@
#ifndef BIF_LANGUAGE_H
#define BIF_LANGUAGE_H
struct BMF_Font;
int read_languagefile(void); /* usiblender.c */
void free_languagemenu(void); /* usiblender.c */
@@ -43,4 +45,9 @@ void lang_setlanguage(void); /* usiblender.c */
char *language_pup(void);
char *fontsize_pup(void);
#endif /* BIF_LANGUAGE_H */
int BIF_DrawString(struct BMF_Font* font, char *str, int translate, int col);
int BIF_DrawStringRGB(struct BMF_Font* font, char *str, int translate, float r, float g, float b);
float BIF_GetStringWidth(struct BMF_Font* font, char *str, int translate);
#endif /* BIF_LANGUAGE_H */