コード例 #1
0
ファイル: sdl_mixer.go プロジェクト: flazz/go-sdl2
func GroupNewer(tag int) int {
	_tag := (C.int)(tag)
	return (int)(C.Mix_GroupNewer(_tag))
}
コード例 #2
0
ファイル: mixer.go プロジェクト: beoran/fungo
// Finds the "most recent" (i.e. last) sample playing in a group of channels 
func GroupNewest(tag int) (int) {
  return int(C.Mix_GroupNewer(C.int(tag)))  
}