示例#1
0
        public int ElementList(out SoundControlElementList list)
        {
            int ret = SoundNativeMethods.SoundControlElementList(handle, out IntPtr ptr);

            list = new SoundControlElementList(ptr);
            return(ret);
        }
示例#2
0
 public void Copy(ref SoundControlElementList obj)
 {
     SoundNativeMethods.SoundControlElementListCopy(handle, obj.handle);
 }