getSyncPoint() public method

public getSyncPoint ( int index, IntPtr &point ) : RESULT
index int
point System.IntPtr
return 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()));
        }