예제 #1
0
        private void TestEffects()
        {
            int  hr;
            bool b;

            hr = m_pTimeline.EnableEffects(true);
            DsError.ThrowExceptionForHR(hr);

            hr = m_pTimeline.EffectsEnabled(out b);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert(b, "EffectsEnabled");
        }