Esempio n. 1
0
        public int ElementWrite(out SoundControlElementValue data)
        {
            int ret = SoundNativeMethods.SoundControlElementWrite(handle, out IntPtr ptr);

            data = new SoundControlElementValue(ptr);
            return(ret);
        }
Esempio n. 2
0
 public int Compare(SoundControlElementValue other)
 {
     return(SoundNativeMethods.SoundControlElementValueCompare(handle, other.handle));
 }
Esempio n. 3
0
 public void Copy(ref SoundControlElementValue obj)
 {
     SoundNativeMethods.SoundControlElementValueCopy(handle, obj.handle);
 }