22 lines
511 B
Scheme
22 lines
511 B
Scheme
(define-library (sdl3 init)
|
|
(import (scheme)
|
|
(chicken base))
|
|
(export init-audio
|
|
init-video
|
|
init-joystick
|
|
init-haptic
|
|
init-gamepad
|
|
init-events
|
|
init-sensor
|
|
init-camera
|
|
|
|
init
|
|
init-sub-system
|
|
quit
|
|
quit-sub-system
|
|
set-app-metadata
|
|
set-app-metadata-property
|
|
get-app-metadata-property
|
|
was-init)
|
|
(begin
|
|
(include-relative "lib/sdl3-init-impl.scm")))
|