wasapi 0.23.0

Bindings for the Wasapi API on Windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

mod api;
mod errors;
mod events;
mod waveformat;
pub use api::*;
pub use errors::*;
pub use events::*;
pub use waveformat::*;
pub use windows::core::GUID;

#[macro_use]
extern crate log;

extern crate num_integer;