getCPtr() static private method

static private getCPtr ( AkMIDIPost, obj ) : IntPtr
obj AkMIDIPost,
return IntPtr
Esempio n. 1
0
    public AkMIDIPost this[int index]
    {
        get
        {
            if (index >= m_Count)
            {
                throw new IndexOutOfRangeException("Out of range access in AkMIDIPostArray");
            }

            return(new AkMIDIPost(GetObjectPtr(index), false));
        }

        set
        {
            if (index >= m_Count)
            {
                throw new IndexOutOfRangeException("Out of range access in AkMIDIPostArray");
            }

            AkSoundEnginePINVOKE.CSharp_AkMIDIPost_Clone(GetObjectPtr(index), AkMIDIPost.getCPtr(value));
        }
    }
Esempio n. 2
0
 public void Clone(AkMIDIPost other)
 {
     AkSoundEnginePINVOKE.CSharp_AkMIDIPost_Clone(swigCPtr, AkMIDIPost.getCPtr(other));
 }