public RESULT setPaused(bool paused)
        {
            RESULT result;

            if (VERSION.platform == Platform.X64)
            {
                result = ChannelGroup.FMOD_ChannelGroup_SetPaused_64(channelgroupraw, paused ? 1 : 0);
            }
            else
            {
                result = ChannelGroup.FMOD_ChannelGroup_SetPaused_32(channelgroupraw, paused ? 1 : 0);
            }
            return(result);
        }