- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Bmp.Core.Lite.Playback.Outputs.NAudioASIO.Originals;
- namespace Bmp.Core.Lite.Playback.Inputs;
- public interface IHaveAsioSampleFormat
- {
- AsioSampleType? AsioSampleFormat { get; }
- }
|