Expose Stream instead of StreamId
This commit is contained in:
parent
125bebd733
commit
f65d0e65bc
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue