// undocumented func SetSynchroValue(value int) bool { _value := (C.int)(value) return int(C.Mix_SetSynchroValue(_value)) == 0 }
// Synchro value is set by MikMod from modules while playing func SetSynchroValue(value int) (int) { return int(C.Mix_SetSynchroValue(C.int(value))) }