getSyncPoint() 공개 메소드

public getSyncPoint ( int index, IntPtr &point ) : RESULT
index int
point System.IntPtr
리턴 RESULT
예제 #1
0
        public SyncPoint?GetSyncPoint(int index)
        {
            IntPtr ptr;

            if (!_fmodSound.getSyncPoint(index, out ptr).Check(Suppressions()))
            {
                return(null);
            }
            return(new SyncPoint(ptr, _fmodSound, Suppressions()));
        }