public void PreloadGroup(string name)
        {
            EventGroup group  = null;
            RESULT     result = eventSystem.getGroup(name, true, ref group);

            fmodErrorCheck(result);

            result = group.loadEventData();
            fmodErrorCheck(result);
        }