diff options
author | David Robillard <d@drobilla.net> | 2016-09-19 23:10:58 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-09-19 23:10:58 -0400 |
commit | cfe092dab893966db823a087ad92f17619e12f45 (patch) | |
tree | fcaa3f07a8252d01cb69072e4e256f70172058df /pugl/event.h | |
parent | 69b2d6336b3598957a59a37a6bc95bcb154bab95 (diff) | |
download | pugl-cfe092dab893966db823a087ad92f17619e12f45.tar.gz pugl-cfe092dab893966db823a087ad92f17619e12f45.tar.bz2 pugl-cfe092dab893966db823a087ad92f17619e12f45.zip |
Fix compilation on Windows
Diffstat (limited to 'pugl/event.h')
-rw-r--r-- | pugl/event.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pugl/event.h b/pugl/event.h index 4b83488..30fd168 100644 --- a/pugl/event.h +++ b/pugl/event.h @@ -242,9 +242,10 @@ typedef union { PuglEventAny any; /**< Valid for all event types. */ PuglEventButton button; /**< PUGL_BUTTON_PRESS, PUGL_BUTTON_RELEASE. */ PuglEventConfigure configure; /**< PUGL_CONFIGURE. */ - PuglEventCrossing crossing; /**< PUGL_ENTER_NOTIFY, PUGL_LEAVE_NOTIFY. */ PuglEventExpose expose; /**< PUGL_EXPOSE. */ + PuglEventClose close; /**< PUGL_CLOSE. */ PuglEventKey key; /**< PUGL_KEY_PRESS, PUGL_KEY_RELEASE. */ + PuglEventCrossing crossing; /**< PUGL_ENTER_NOTIFY, PUGL_LEAVE_NOTIFY. */ PuglEventMotion motion; /**< PUGL_MOTION_NOTIFY. */ PuglEventScroll scroll; /**< PUGL_SCROLL. */ PuglEventFocus focus; /**< PUGL_FOCUS_IN, PUGL_FOCUS_OUT. */ |