public RESULT getPosition(ref uint position, TIMEUNIT postype) { RESULT result; if (VERSION.platform == Platform.X64) { result = Channel.FMOD_Channel_GetPosition_64(channelraw, ref position, postype); } else { result = Channel.FMOD_Channel_GetPosition_32(channelraw, ref position, postype); } return(result); }