Пример #1
0
func GroupOldest(tag int) int {
	_tag := (C.int)(tag)
	return (int)(C.Mix_GroupOldest(_tag))
}
Пример #2
0
// Finds the "oldest" sample playing in a group of channels 
func GroupOldest(tag int) (int) {
  return int(C.Mix_GroupOldest(C.int(tag)))  
}