Some checks failed
Build and Deploy / build-macos (push) Failing after 5s
Build and Deploy / build-linux (push) Failing after 2m15s
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
12 lines
237 B
C
12 lines
237 B
C
#ifndef QJS_SDL_H
|
|
#define QJS_SDL_H
|
|
|
|
#include "quickjs.h"
|
|
|
|
JSValue js_input_use(JSContext *ctx);
|
|
JSValue js_camera_use(JSContext *ctx);
|
|
JSValue js_sdl_audio_use(JSContext *ctx);
|
|
JSValue js_sdl_use(JSContext *js);
|
|
|
|
#endif /* QJS_SDL_H */
|