From: batt Date: Wed, 27 Aug 2008 17:27:57 +0000 (+0000) Subject: Add missing prototypes. X-Git-Tag: 2.0.0~194 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=067aafa5e508a38d14a8b63a7b21018b8718720a;p=bertos.git Add missing prototypes. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1740 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/gfx/text.h b/bertos/gfx/text.h index 0ca2407d..04d3d1a5 100644 --- a/bertos/gfx/text.h +++ b/bertos/gfx/text.h @@ -110,6 +110,8 @@ int text_widthf(struct Bitmap *bm, const char * fmt, ...) FORMAT(__printf__, 2, int text_puts_P(const char * PROGMEM str, struct Bitmap *bm); int text_vprintf_P(struct Bitmap *bm, const char * PROGMEM fmt, va_list ap); int text_printf_P(struct Bitmap *bm, const char * PROGMEM fmt, ...) FORMAT(__printf__, 2, 3); +int text_xyvprintf_P(struct Bitmap *bm, coord_t x, coord_t y, uint16_t mode, const char *fmt, va_list ap); +int text_xyprintf_P(struct Bitmap *bm, coord_t x, coord_t col, uint16_t mode, const char *fmt, ...) FORMAT(__printf__, 5, 6); int text_xprintf_P(struct Bitmap *bm, uint8_t row, uint8_t col, uint16_t mode, const char * PROGMEM fmt, ...) FORMAT(__printf__, 5, 6); int text_vwidthf_P(struct Bitmap *bm, const char * PROGMEM fmt, va_list ap); int text_widthf_P(struct Bitmap *bm, const char * PROGMEM fmt, ...);