Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Haarsma <phaseIV@zonnet.nl>2003-07-15 19:09:40 +0400
committerRob Haarsma <phaseIV@zonnet.nl>2003-07-15 19:09:40 +0400
commitaec17932a05d81d04869c7cc56d68fac85985e8d (patch)
treeb1844243157b92f00800a4a428606ba003283e0e
parent288f37903b16a0017924386c58d7f2d5ede816ec (diff)
Added newline to file (seeing tinderbox burn...) and
declared the BMF_Font struct for proper headerfile handling.
-rw-r--r--source/blender/include/BIF_language.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/source/blender/include/BIF_language.h b/source/blender/include/BIF_language.h
index 718795dd8d1..91cdc18673d 100644
--- a/source/blender/include/BIF_language.h
+++ b/source/blender/include/BIF_language.h
@@ -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 */ \ No newline at end of file
+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 */
+