aboutsummaryrefslogtreecommitdiffstats
path: root/include/gfx.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-05-26 02:06:55 +1000
committerinmarket <andrewh@inmarket.com.au>2013-05-26 02:06:55 +1000
commit8fcbf4e5d5cc88d52f4e6e67ebead27fc856ff4a (patch)
treec52d7733525727320d2de00acedb42bc18124471 /include/gfx.h
parent7fbfde42aabbcd30cffba2fba35158236c0a6c6c (diff)
downloaduGFX-8fcbf4e5d5cc88d52f4e6e67ebead27fc856ff4a.tar.gz
uGFX-8fcbf4e5d5cc88d52f4e6e67ebead27fc856ff4a.tar.bz2
uGFX-8fcbf4e5d5cc88d52f4e6e67ebead27fc856ff4a.zip
More GOS module changes
GQUEUE as a seperate module GOS changes including basic Win32 O/S support
Diffstat (limited to 'include/gfx.h')
-rw-r--r--include/gfx.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/gfx.h b/include/gfx.h
index 84aec39f..ac9a5382 100644
--- a/include/gfx.h
+++ b/include/gfx.h
@@ -87,6 +87,14 @@
#define GFX_USE_GTIMER FALSE
#endif
/**
+ * @brief GFX Queue API
+ * @details Defaults to FALSE
+ * @details Provides queue management.
+ */
+ #ifndef GFX_USE_GQUEUE
+ #define GFX_USE_GQUEUE FALSE
+ #endif
+ /**
* @brief GFX Input Device API
* @details Defaults to FALSE
* @note Also add the specific hardware drivers to your makefile.
@@ -143,6 +151,7 @@
*/
#include "gos/options.h"
#include "gmisc/options.h"
+#include "gqueue/options.h"
#include "gevent/options.h"
#include "gtimer/options.h"
#include "gdisp/options.h"
@@ -164,6 +173,7 @@
*/
#include "gos/gos.h"
#include "gmisc/gmisc.h"
+#include "gqueue/gqueue.h"
#include "gevent/gevent.h"
#include "gtimer/gtimer.h"
#include "gdisp/gdisp.h"