diff options
Diffstat (limited to 'plugins/Alarms/glyph.h')
-rw-r--r-- | plugins/Alarms/glyph.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/Alarms/glyph.h b/plugins/Alarms/glyph.h new file mode 100644 index 0000000000..86e2247608 --- /dev/null +++ b/plugins/Alarms/glyph.h @@ -0,0 +1,21 @@ +#ifndef GLYPH_H +#define GLYPH_H + +#ifdef __cplusplus +extern "C" { +#endif + +extern double text_width; +extern double text_height; + +void draw_glyph(int); +void draw_string(const char *s); +void draw_string_centered(const char *s); + +void set_text_size(const double ttext_width, const double ttext_height); + +#ifdef __cplusplus +}; +#endif + +#endif |