mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-22 05:34:59 -07:00
10 lines
319 B
Odin
10 lines
319 B
Odin
package sdl3
|
|
|
|
SharedObject :: struct {}
|
|
|
|
@(default_calling_convention="c", link_prefix="SDL_", require_results)
|
|
foreign lib {
|
|
LoadObject :: proc(sofile: cstring) -> ^SharedObject ---
|
|
LoadFunction :: proc(handle: ^SharedObject, name: cstring) -> FunctionPointer ---
|
|
UnloadObject :: proc(handle: ^SharedObject) ---
|
|
} |