summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-10-09 08:17:49 -0400
committerDavid Thompson <dthompson2@worcester.edu>2022-10-09 08:17:49 -0400
commitd1cc13011dd5cdc1f44d0d05ab15ccaf44e91bdd (patch)
tree705c8b79ac1c613bdcd92633be575356fc9721b8
parent4811db26a9142ac587649cfa325e0bfc5b9f761e (diff)
bindings: Add two missing window event types.
-rw-r--r--sdl2/bindings.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/sdl2/bindings.scm b/sdl2/bindings.scm
index c623815..480cf71 100644
--- a/sdl2/bindings.scm
+++ b/sdl2/bindings.scm
@@ -454,6 +454,8 @@ RETURN-TYPE and accept arguments of ARG-TYPES."
(define-public SDL_WINDOWEVENT_FOCUS_GAINED 12)
(define-public SDL_WINDOWEVENT_FOCUS_LOST 13)
(define-public SDL_WINDOWEVENT_CLOSE 14)
+(define-public SDL_WINDOWEVENT_TAKE_FOCUS 15)
+(define-public SDL_WINDOWEVENT_HIT_TEST 16)
(define-foreign sdl-poll-event
int "SDL_PollEvent" '(*))