Working example

This commit is contained in:
2025-12-15 12:37:50 -05:00
commit 4ff4b04f06
165 changed files with 94256 additions and 0 deletions

13
sdl3/sdl3_guid.odin Normal file
View File

@@ -0,0 +1,13 @@
package sdl3
import "core:c"
GUID :: struct {
data: [16]Uint8,
}
@(default_calling_convention="c", link_prefix="SDL_")
foreign lib {
GUIDToString :: proc(guid: GUID, pszGUID: [^]c.char, cbGUID: c.int) ---
StringToGUID :: proc(pchGUID: cstring) -> GUID ---
}