-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathext.rs
25 lines (23 loc) · 1.1 KB
/
ext.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use ::ConnectError;
use ::{MidiInputConnection, MidiOutputConnection};
/// Trait that is implemented by `MidiInput` on platforms that
/// support virtual ports (currently every platform but winmm and winrt).
pub trait VirtualInput<T: Send> where Self: Sized {
/// Creates a virtual input port. Once it has been created,
/// other applications can connect to this port and send MIDI
/// messages which will be received by this port.
fn create_virtual<F>(
self, port_name: &str, callback: F, data: T
) -> Result<MidiInputConnection<T>, ConnectError<Self>>
where F: FnMut(u64, &[u8], &mut T) + Send + 'static;
}
/// Trait that is implemented by `MidiOutput` on platforms that
/// support virtual ports (currently every platform but winmm and winrt).
pub trait VirtualOutput where Self: Sized {
/// Creates a virtual output port. Once it has been created,
/// other applications can connect to this port and will
/// receive MIDI messages that are sent to this port.
fn create_virtual(
self, port_name: &str
) -> Result<MidiOutputConnection, ConnectError<Self>>;
}