diff options
Diffstat (limited to 'include/gdisp.h')
-rw-r--r-- | include/gdisp.h | 5 |
1 files changed, 5 insertions, 0 deletions
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.
*/
|