summaryrefslogtreecommitdiff
path: root/src/client/font.h
diff options
context:
space:
mode:
authorDusan Durech <dusan@debian.debian>2009-04-12 14:29:51 +0200
committerDusan Durech <dusan@debian.debian>2009-04-12 14:29:51 +0200
commit876fc624df9728ee0feee26e1b31b53ed9ef3326 (patch)
treee20814ab6d07fb892284dcee11bc492532bdabaa /src/client/font.h
parentdff1cbc31ca8d585c01f5bebd08e50cf07fd2b0c (diff)
convert all name function from oldName to new_name
Diffstat (limited to 'src/client/font.h')
-rw-r--r--src/client/font.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/font.h b/src/client/font.h
index 6f30a71..17aa76e 100644
--- a/src/client/font.h
+++ b/src/client/font.h
@@ -17,13 +17,13 @@
# define COLOR_YELLOW 255, 255, 0
# define FONT_SIZE 16
-extern bool_t isFontInicialized();
-extern void initFont();
-extern void drawFont(char *s, int x, int y, int r, int g, int b);
-extern void drawFontMaxSize(char *s, int x, int y, int w, int h, int r, int g,
+extern bool_t font_is_inicialized();
+extern void font_init();
+extern void font_draw(char *s, int x, int y, int r, int g, int b);
+extern void font_drawMaxSize(char *s, int x, int y, int w, int h, int r, int g,
int b);
-extern int getFontSize();
-extern void getTextSize(char *s, int *w, int *h);
-extern void quitFont();
+extern int font_get_size();
+extern void font_text_size(char *s, int *w, int *h);
+extern void font_quit();
#endif