本文整理匯總了Golang中C.SDL_SetModState函數的典型用法代碼示例。如果您正苦於以下問題:Golang SDL_SetModState函數的具體用法?Golang SDL_SetModState怎麽用?Golang SDL_SetModState使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了SDL_SetModState函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: SetModState
// Sets the state of modifier keys
func SetModState(modstate Mod) {
GlobalMutex.Lock()
C.SDL_SetModState(C.SDLMod(modstate))
GlobalMutex.Unlock()
}
示例2: SetModState
// Sets the state of modifier keys
func SetModState(modstate Mod) { C.SDL_SetModState(C.SDLMod(modstate)) }
示例3: SetModState
// Sets the state of modifier keys
func SetModState(modstate int32) {
C.SDL_SetModState(C.SDL_Keymod(modstate))
}
示例4: SetModState
func SetModState(modstate Keymod) {
_modstate := (C.SDL_Keymod)(modstate)
C.SDL_SetModState(_modstate)
}
示例5: SetModState
// Set the current key modifier state
// This does not change the keyboard state, only the key modifier flags.
func SetModState(state int) {
C.SDL_SetModState(C.SDLMod(state))
}
示例6: SetModState
func SetModState(mod Keymod) {
C.SDL_SetModState(mod.c())
}