summaryrefslogtreecommitdiff
path: root/doc/doxygen
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2007-12-22 19:29:40 +0000
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:38:21 +0200
commitb71d5ba31a0ebc433dcc255de7dbb47a689b937c (patch)
tree14d2cbc720e392f96a64787f61c84ebf4da4d164 /doc/doxygen
parent3dc6e2e86821303784512f86805683f1fda14ccb (diff)
Fix of errorString clearing in error() and documentation fixes for DeviceInfo (gps).
Diffstat (limited to 'doc/doxygen')
-rw-r--r--doc/doxygen/probe.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/doxygen/probe.txt b/doc/doxygen/probe.txt
index 9fce97b..1352f51 100644
--- a/doc/doxygen/probe.txt
+++ b/doc/doxygen/probe.txt
@@ -37,15 +37,15 @@ The RtAudio::DeviceInfo structure is defined in RtAudio.h and provides a variety
\code
typedef struct RtAudio::DeviceInfo {
- bool probed; // true if the device capabilities were successfully probed.
- std::string name; // Character string device identifier.
- int outputChannels; // Maximum output channels supported by device.
- int inputChannels; // Maximum input channels supported by device.
- int duplexChannels; // Maximum simultaneous input/output channels supported by device.
- bool isDefaultOutput; // true if this is the default output device.
- bool isDefaultInput; // true if this is the default input device.
- std::vector<int> sampleRates; // Supported sample rates.
- RtAudioFormat nativeFormats; // Bit mask of supported data formats.
+ bool probed; // true if the device capabilities were successfully probed.
+ std::string name; // Character string device identifier.
+ unsigned int outputChannels; // Maximum output channels supported by device.
+ unsigned int inputChannels; // Maximum input channels supported by device.
+ unsigned int duplexChannels; // Maximum simultaneous input/output channels supported by device.
+ bool isDefaultOutput; // true if this is the default output device.
+ bool isDefaultInput; // true if this is the default input device.
+ std::vector<unsigned int> sampleRates; // Supported sample rates.
+ RtAudioFormat nativeFormats; // Bit mask of supported data formats.
};
\endcode