jack 0.13.5

Real time audio and midi with JACK.
Documentation
mod async_client;
mod callbacks;
mod client_impl;
mod common;
mod handler_impls;

/// Contains `ClientOptions` flags used when opening a client.
mod client_options;

/// Contains `ClientStatus` flags which describe the status of a Client.
mod client_status;

pub use self::async_client::AsyncClient;
pub use self::callbacks::{NotificationHandler, ProcessHandler};
pub use self::client_impl::{Client, CycleTimes, InternalClientID, ProcessScope};
pub use self::client_options::ClientOptions;
pub use self::client_status::ClientStatus;
pub use self::common::CLIENT_NAME_SIZE;

#[allow(deprecated)]
pub use self::handler_impls::ClosureProcessHandler;