예제 #1
0
파일: sdl.go 프로젝트: gnanderson/Go-SDL
// Sets the state of modifier keys
func SetModState(modstate Mod) { C.SDL_SetModState(C.SDLMod(modstate)) }
예제 #2
0
파일: sdl.go 프로젝트: kearsley/Go-SDL
// Sets the state of modifier keys
func SetModState(modstate Mod) {
	GlobalMutex.Lock()
	C.SDL_SetModState(C.SDLMod(modstate))
	GlobalMutex.Unlock()
}
예제 #3
0
파일: keyboard.go 프로젝트: beoran/fungo
// 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))
}