Beispiel #1
0
        public int CardInfo(out SoundControlCardInfo info)
        {
            int ret = SoundNativeMethods.SoundControlCardInfo(handle, out IntPtr ptr);

            info = new SoundControlCardInfo(ptr);
            return(ret);
        }
Beispiel #2
0
 public void Copy(ref SoundControlCardInfo obj)
 {
     SoundNativeMethods.SoundControlCardInfoCopy(handle, obj.handle);
 }