X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Ftext.h;h=87bacfae68888e8f7310ee1559a294975db0c310;hb=c41eed7d175c38a0e247544d505be0ef7c3f0a4b;hp=3726913a0d0847ad82ef8dc44814368690081800;hpb=bcf38f772b397e7a8ba781a69aacb9380e54b32a;p=bertos.git diff --git a/gfx/text.h b/gfx/text.h old mode 100755 new mode 100644 index 3726913a..87bacfae --- a/gfx/text.h +++ b/gfx/text.h @@ -1,9 +1,34 @@ /** * \file * * * \brief Text graphic routines (interface) @@ -15,6 +40,9 @@ /*#* *#* $Log$ + *#* Revision 1.8 2006/09/13 13:58:55 bernie + *#* text_moveTo(): Swap parameters. + *#* *#* Revision 1.7 2006/07/19 12:56:26 bernie *#* Convert to new Doxygen style. *#* @@ -73,7 +101,7 @@ #include #include /* BV() */ -#include /* CPU_HARVARD */ +#include /* CPU_HARVARD */ #include /* coord_t */ #include @@ -117,7 +145,7 @@ struct Bitmap; /* Low-level text functions (mware/text.c) */ -void text_moveTo(struct Bitmap *bm, int col, int row); +void text_moveTo(struct Bitmap *bm, int row, int col); void text_setCoord(struct Bitmap *bm, int x, int y); int text_putchar(char c, struct Bitmap *bm); uint8_t text_style(struct Bitmap *bm, uint8_t flags, uint8_t mask);