コード例 #1
0
ファイル: sdl_mixer.go プロジェクト: flazz/go-sdl2
func Paused(channel int) bool {
	_channel := (C.int)(channel)
	return int(C.Mix_Paused(_channel)) > 0
}
コード例 #2
0
ファイル: channel.go プロジェクト: swantescholz/coding
func Paused(c Channel) bool  { return C.Mix_Paused(C.int(c)) == 1 }
コード例 #3
0
ファイル: sdl_mixer.go プロジェクト: 4gophers/go-sdl2
// Paused (https://www.libsdl.org/projects/SDL_mixer/docs/SDL_mixer_39.html)
func Paused(channel int) int {
	_channel := (C.int)(channel)
	return int(C.Mix_Paused(_channel))
}
コード例 #4
0
ファイル: mixer.go プロジェクト: beoran/fungo
func PausedChannel(channel int) (int) { 
  return int(C.Mix_Paused(C.int(channel)))
}