X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Fcharts.h;h=a9ae3e2c7d3faadda1c4b2abca9f3369a1f7c9da;hb=59522a49bb5e019984284cc75a99b49a5e1c5f4e;hp=468af79b0c96e6bcf99bb010737a3b35e5a6bd7c;hpb=41ee2287b2f2d7ec3e73e998b06076888608ed72;p=bertos.git diff --git a/gfx/charts.h b/gfx/charts.h index 468af79b..a9ae3e2c 100755 --- a/gfx/charts.h +++ b/gfx/charts.h @@ -18,6 +18,12 @@ /*#* *#* $Log$ + *#* Revision 1.3 2005/11/27 23:36:18 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* + *#* Revision 1.2 2005/11/04 18:17:45 bernie + *#* Fix header guards and includes for new location of gfx module. + *#* *#* Revision 1.1 2005/11/04 18:11:35 bernie *#* Move graphics stuff from mware/ to gfx/. *#* @@ -37,11 +43,11 @@ *#* Import simple chart drawing code. *#* *#*/ -#ifndef MWARE_CHARTS_H -#define MWARE_CHARTS_H +#ifndef GFX_CHARTS_H +#define GFX_CHARTS_H -#include /* vcoord_t */ -#include /* CONFIG_ stuff */ +#include /* vcoord_t */ +#include /* CONFIG_ stuff */ /*! * \name Width/height of the small ticks drawn over the axes @@ -80,4 +86,4 @@ void chart_drawAxis(Bitmap *bm); void chart_drawCurve(Bitmap *bm, const chart_y_t *curve_y, int curve_cnt); void chart_drawDots(Bitmap *bm, const chart_x_t *dots_x, const chart_y_t *dots_y, int cnt); -#endif /* MWARE_CHARTS_H */ +#endif /* GFX_CHARTS_H */