func GroupCount(tag int) int { _tag := (C.int)(tag) return (int)(C.Mix_GroupCount(_tag)) }
// 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))) }