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