add missing SDL2_SemPost binding

This commit is contained in:
Christopher Kaster
2024-04-05 09:00:57 +02:00
parent 1422e5bc26
commit 8d399fa7c0

View File

@@ -34,6 +34,7 @@ foreign lib {
SemWait :: proc(s: ^sem) -> c.int ---
SemTryWait :: proc(s: ^sem) -> c.int ---
SemWaitTimeout :: proc(s: ^sem, ms: u32) -> c.int ---
SemPost :: proc(s: ^sem) -> c.int ---
SemValue :: proc(s: ^sem) -> u32 ---
CreateCond :: proc() -> ^cond ---