public RESULT getPaused(ref bool paused)
        {
            int    num = 0;
            RESULT result;

            if (VERSION.platform == Platform.X64)
            {
                result = ChannelGroup.FMOD_ChannelGroup_GetPaused_64(channelgroupraw, ref num);
            }
            else
            {
                result = ChannelGroup.FMOD_ChannelGroup_GetPaused_32(channelgroupraw, ref num);
            }
            paused = (num != 0);
            return(result);
        }