aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/mcufont/mf_wordwrap.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-11-03 10:51:23 +1000
committerinmarket <andrewh@inmarket.com.au>2018-11-03 10:51:23 +1000
commit7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d (patch)
tree95cf152ef65ff19c7b2515b427bbe86b92b611d0 /src/gdisp/mcufont/mf_wordwrap.h
parent8bd70d953bcd3e32ceb4e45a4e561c973726280a (diff)
downloaduGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.gz
uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.bz2
uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.zip
For all source files update integer types to the new gI8 etc type names
Diffstat (limited to 'src/gdisp/mcufont/mf_wordwrap.h')
-rw-r--r--src/gdisp/mcufont/mf_wordwrap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gdisp/mcufont/mf_wordwrap.h b/src/gdisp/mcufont/mf_wordwrap.h
index a1a051fa..91ac8cad 100644
--- a/src/gdisp/mcufont/mf_wordwrap.h
+++ b/src/gdisp/mcufont/mf_wordwrap.h
@@ -23,7 +23,7 @@
*
* Returns: true to continue, false to stop after this line.
*/
-typedef bool (*mf_line_callback_t) (mf_str line, uint16_t count,
+typedef bool (*mf_line_callback_t) (mf_str line, gU16 count,
void *state);
/* Word wrap a piece of text. Calls the callback function for each line.
@@ -33,7 +33,7 @@ typedef bool (*mf_line_callback_t) (mf_str line, uint16_t count,
* text: Pointer to the start of the text to process.
* state: Free variable for caller to use (can be NULL).
*/
-MF_EXTERN void mf_wordwrap(const struct mf_font_s *font, int16_t width,
+MF_EXTERN void mf_wordwrap(const struct mf_font_s *font, gI16 width,
mf_str text, mf_line_callback_t callback, void *state);
#endif