예제 #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)))  
}