Example #1
0
func GroupChannels(from, to, tag int) int {
	_from := (C.int)(from)
	_to := (C.int)(to)
	_tag := (C.int)(tag)
	return int(C.Mix_GroupChannels(_from, _to, _tag))
}
Example #2
0
// Assign several consecutive channels to a group
func GroupChannels(from, to, tag int) (int) {
  return int(C.Mix_GroupChannels(C.int(from), C.int(to), C.int(tag)))  
}