Example #1
0
func GroupCount(tag int) int {
	_tag := (C.int)(tag)
	return (int)(C.Mix_GroupCount(_tag))
}
Example #2
0
// Returns the number of channels in a group. This is also a subtle
// way to get the total number of channels when 'tag' is -1
// Finds the first available channel in a group of channels,
// returning -1 if none are available.
func GroupCount(tag int) (int) {
  return int(C.Mix_GroupCount(C.int(tag)))  
}