diff options
| author | Tobias Schlemmer <keinstein@users.sourcforge.net> | 2014-03-27 21:16:23 +0100 |
|---|---|---|
| committer | Tobias Schlemmer <keinstein@users.sourcforge.net> | 2014-03-27 21:16:23 +0100 |
| commit | 239c4d42a4271e7d0ac31d5495e325367fc751e3 (patch) | |
| tree | b6af2ced328aa5b9599b06d2b6e53d1f24699855 | |
| parent | 879a0c63b9dc8dafe6f5af22ae98aaa39902a6c6 (diff) | |
Capitalise JACK.
This fixes c9939d0 .
@SpotlightKid thanks for the clarification
| -rw-r--r-- | RtMidi.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -122,7 +122,7 @@ class RtMidi UNSPECIFIED, /*!< Search for a working compiled API. */ MACOSX_CORE, /*!< Macintosh OS-X Core Midi API. */ LINUX_ALSA, /*!< The Advanced Linux Sound Architecture API. */ - UNIX_JACK, /*!< The Jack Low-Latency MIDI Server API. */ + UNIX_JACK, /*!< The JACK Low-Latency MIDI Server API. */ WINDOWS_MM, /*!< The Microsoft Multimedia MIDI API. */ WINDOWS_KS, /*!< The Microsoft Kernel Streaming MIDI API. */ RTMIDI_DUMMY /*!< A compilable but non-functional API. */ @@ -224,7 +224,7 @@ class RtMidiIn : public RtMidi If no API argument is specified and multiple API support has been compiled, the default order of use is JACK, ALSA (Linux) and CORE, - Jack (OS-X). + JACK (OS-X). \param api An optional API id can be specified. \param clientName An optional Client name can be specified. This @@ -250,11 +250,11 @@ class RtMidiIn : public RtMidi */ void openPort( unsigned int portNumber = 0, const std::string portName = std::string( "RtMidi Input" ) ); - //! Create a virtual input port, with optional name, to allow software connections (OS X, Jack and ALSA only). + //! Create a virtual input port, with optional name, to allow software connections (OS X, JACK and ALSA only). /*! This function creates a virtual MIDI input port to which other software applications can connect. This type of functionality - is currently only supported by the Macintosh OS-X, any Jack, + is currently only supported by the Macintosh OS-X, any JACK, and Linux ALSA APIs (the function returns an error for the other APIs). \param portName An optional name for the applicaction port that is @@ -359,7 +359,7 @@ class RtMidiOut : public RtMidi If no API argument is specified and multiple API support has been compiled, the default order of use is JACK, ALSA (Linux) and CORE, - Jack (OS-X). + JACK (OS-X). */ RtMidiOut( RtMidi::Api api=UNSPECIFIED, const std::string clientName = std::string( "RtMidi Output Client") ); |
