mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-17 20:12:38 +00:00
Update sdl3_main.odin
This commit is contained in:
8
vendor/sdl3/sdl3_main.odin
vendored
8
vendor/sdl3/sdl3_main.odin
vendored
@@ -2,19 +2,19 @@ package sdl3
|
||||
|
||||
import "core:c"
|
||||
|
||||
typedef int (SDLCALL *SDL_main_func)(int argc, char *argv[]);
|
||||
main_func :: #type proc(argc: c.int, argv: [^]cstring)
|
||||
|
||||
@(default_calling_convention="c", link_prefix="SDL_")
|
||||
foreign lib {
|
||||
AppInit :: proc(appstate: ^rawptr, argc: c.int, argv: [^]cstring) -> AppResult ---
|
||||
AppIterate :: proc(appstate: rawptr) -> AppResult ---
|
||||
AppEvent :: proc(appstate: rawptr, event: ^Event) -> AppResult ---
|
||||
AppQuit :: proc(appstate: rawptr, SDL_AppResult result) ---
|
||||
AppQuit :: proc(appstate: rawptr, result: AppResult) ---
|
||||
main :: proc(argc: c.int, argv: [^]cstring) -> c.int ---
|
||||
SetMainReady :: proc() ---
|
||||
RunApp :: proc(argc: c.int, argv: [^]cstring, mainFunction: main_func, reserved: rawptr) -> c,int ---
|
||||
RunApp :: proc(argc: c.int, argv: [^]cstring, mainFunction: main_func, reserved: rawptr) -> c.int ---
|
||||
EnterAppMainCallbacks :: proc(argc: c.int, argv: [^]cstring, appinit: AppInit_func, appiter: AppIterate_func, appevent: AppEvent_func, appquit: AppQuit_func) -> c.int ---
|
||||
RegisterApp :: proc(name: cstring, Uint32 style, hInst: rawptr) -> bool ---
|
||||
RegisterApp :: proc(name: cstring, style: Uint32, hInst: rawptr) -> bool ---
|
||||
UnregisterApp :: proc() ---
|
||||
GDKSuspendComplete :: proc() ---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user