Example #1
0
 public static XtService GetServiceBySystem(XtSystem system)
 {
     return(new XtService(XtNative.XtAudioGetServiceBySystem(system)));
 }
Example #2
0
        public static XtService GetServiceBySystem(XtSystem system)
        {
            IntPtr service = XtNative.XtAudioGetServiceBySystem(system);

            return(service == IntPtr.Zero ? null : new XtService(service));
        }