From d1f970217374c5f0363ebbfa6bd6551094a5735d Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 24 Oct 2012 00:14:32 +0200 Subject: [PATCH] added point_t struct --- include/gdisp.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/gdisp.h b/include/gdisp.h index 7b07bc2e..bf1e7dbe 100644 --- a/include/gdisp.h +++ b/include/gdisp.h @@ -118,6 +118,11 @@ /* Type definitions */ /*===========================================================================*/ +typedef struct _point_t { + coord_t x; + coord_t y; +} point_t; + /** * @brief Type for the text justification. */