add some more docs for unconnected field

This commit is contained in:
Andrew Kelley 2016-12-23 14:13:27 -05:00
parent 662ef7983b
commit 38b0278e80

View file

@ -613,6 +613,7 @@ struct SoundIoOutStream {
/// If this is set to `true`, JACK will not immediately connect the output /// If this is set to `true`, JACK will not immediately connect the output
/// of this stream to the output ports of the sound card. /// of this stream to the output ports of the sound card.
/// Defaults to `false`. /// Defaults to `false`.
/// For backends other than JACK, this does nothing.
bool unconnected; bool unconnected;
}; };
@ -701,6 +702,7 @@ struct SoundIoInStream {
/// If this is set to `true`, JACK will not immediately connect the input /// If this is set to `true`, JACK will not immediately connect the input
/// of this stream to the input ports of the sound card. /// of this stream to the input ports of the sound card.
/// Defaults to `false`. /// Defaults to `false`.
/// For backends other than JACK, this does nothing.
bool unconnected; bool unconnected;
}; };