aboutsummaryrefslogtreecommitdiffstats
path: root/include/gevent
diff options
context:
space:
mode:
authorAndrew Hannam <andrewh@inmarket.com.au>2013-01-17 15:08:34 +1000
committerAndrew Hannam <andrewh@inmarket.com.au>2013-01-17 15:08:34 +1000
commit1fc03db5861c232792042844c15153a7e1bcc724 (patch)
tree499b549f34e5effbfdd3e5ccf3b97b03c732b11e /include/gevent
parent7cce52d2f6b874895e3cdd557c4523eeeae942bf (diff)
downloaduGFX-1fc03db5861c232792042844c15153a7e1bcc724.tar.gz
uGFX-1fc03db5861c232792042844c15153a7e1bcc724.tar.bz2
uGFX-1fc03db5861c232792042844c15153a7e1bcc724.zip
New Subsystems GADC, GAUDIN, GAUDOUT, GMISC
Subsystem definitions and API (not fully implemented yet)
Diffstat (limited to 'include/gevent')
-rw-r--r--include/gevent/gevent.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/gevent/gevent.h b/include/gevent/gevent.h
index 67a6185a..f9764336 100644
--- a/include/gevent/gevent.h
+++ b/include/gevent/gevent.h
@@ -53,6 +53,9 @@ typedef uint16_t GEventType;
/* Other event types are allocated in ranges in their respective include files */
#define GEVENT_GINPUT_FIRST 0x0100 // GINPUT events range from 0x0100 to 0x01FF
#define GEVENT_GWIN_FIRST 0x0200 // GWIN events range from 0x0200 to 0x02FF
+ #define GEVENT_GADC_FIRST 0x0300 // GADC events range from 0x0300 to 0x033F
+ #define GEVENT_GAUDIN_FIRST 0x0340 // GAUDIN events range from 0x0340 to 0x037F
+ #define GEVENT_GAUDOUT_FIRST 0x0380 // GAUDOUT events range from 0x0380 to 0x03BF
#define GEVENT_USER_FIRST 0x8000 // Any application defined events start at 0x8000
// This object can be typecast to any GEventXxxxx type to allow any sub-system (or the application) to create events.