mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
removed comma from last element of enums.
This commit is contained in:
parent
9dd7c93a56
commit
6ce9436b13
10 changed files with 29 additions and 29 deletions
|
|
@ -54,7 +54,7 @@ typedef enum _snd_rawmidi_stream {
|
|||
SND_RAWMIDI_STREAM_OUTPUT = 0,
|
||||
/** Input stream */
|
||||
SND_RAWMIDI_STREAM_INPUT,
|
||||
SND_RAWMIDI_STREAM_LAST = SND_RAWMIDI_STREAM_INPUT,
|
||||
SND_RAWMIDI_STREAM_LAST = SND_RAWMIDI_STREAM_INPUT
|
||||
} snd_rawmidi_stream_t;
|
||||
|
||||
/** Append (flag to open mode) \hideinitializer */
|
||||
|
|
@ -74,7 +74,7 @@ typedef enum _snd_rawmidi_type {
|
|||
/** Shared memory client RawMidi (not yet implemented) */
|
||||
SND_RAWMIDI_TYPE_SHM,
|
||||
/** INET client RawMidi (not yet implemented) */
|
||||
SND_RAWMIDI_TYPE_INET,
|
||||
SND_RAWMIDI_TYPE_INET
|
||||
} snd_rawmidi_type_t;
|
||||
|
||||
int snd_rawmidi_open(snd_rawmidi_t **in_rmidi, snd_rawmidi_t **out_rmidi,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue