aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-10-24 00:14:32 +0200
committerJoel Bodenmann <joel@unormal.org>2012-10-24 00:14:32 +0200
commitd1f970217374c5f0363ebbfa6bd6551094a5735d (patch)
tree481afcd0afcbfd7614eda5858da6c02a47c8f4df /include
parent7c4472cd94855fe88f5f456997a3bb74d40d2aa1 (diff)
downloaduGFX-d1f970217374c5f0363ebbfa6bd6551094a5735d.tar.gz
uGFX-d1f970217374c5f0363ebbfa6bd6551094a5735d.tar.bz2
uGFX-d1f970217374c5f0363ebbfa6bd6551094a5735d.zip
added point_t struct
Diffstat (limited to 'include')
-rw-r--r--include/gdisp.h5
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.
*/