mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Add sdl3_loadso.odin
This commit is contained in:
Vendored
+10
@@ -0,0 +1,10 @@
|
|||||||
|
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) ---
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user