Skip to content

Instantly share code, notes, and snippets.

@zc00gii
Created August 24, 2010 21:41
Show Gist options
  • Save zc00gii/548384 to your computer and use it in GitHub Desktop.
Save zc00gii/548384 to your computer and use it in GitHub Desktop.
SDLCond: cover from StructSDLCond* {
new: extern(SDL_CreateCond) static func -> This
wait: extern(SDL_CondWait) func (mutex: SDLMutex) -> Int
waitTimeout: extern(SDL_CondWaitTimeout) func (mutex: SDLMutex, ms: UInt32) -> Int
signal: extern(SDL_CondSignal) func -> Int
broadcast: extern(SDL_CondBroadcast) func -> Int
destroy: extern(SDL_DestroyCond) func
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment