Expose Stream instead of StreamId

This commit is contained in:
Viktor Lazarev 2019-08-29 08:20:53 +02:00 committed by mitchmindtree
parent 125bebd733
commit f65d0e65bc
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@ use self::winapi::um::winnt::HRESULT;
use std::io::Error as IoError;
use traits::{HostTrait};
pub use self::device::{Device, Devices, SupportedInputFormats, SupportedOutputFormats, default_input_device, default_output_device};
pub use self::stream::{StreamId};
pub use self::stream::Stream;
mod com;
mod device;

View File

@ -468,9 +468,8 @@ mod platform_impl {
pub use crate::host::wasapi::{
Device as WasapiDevice,
Devices as WasapiDevices,
EventLoop as WasapiEventLoop,
Stream as WasapiStream,
Host as WasapiHost,
StreamId as WasapiStreamId,
SupportedInputFormats as WasapiSupportedInputFormats,
SupportedOutputFormats as WasapiSupportedOutputFormats,
};