16 lines
324 B
Scheme
16 lines
324 B
Scheme
(module (sdl3 init)
|
|
(SDL_InitFlags
|
|
SDL_AppResult
|
|
|
|
init
|
|
init-sub-system
|
|
quit
|
|
quit-sub-system
|
|
set-app-metadata
|
|
set-app-metadata-property
|
|
get-app-metadata-property
|
|
was-init)
|
|
(import (scheme)
|
|
(chicken base))
|
|
(begin
|
|
(include-relative "lib/sdl3-init-impl.scm")))
|