mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-08 10:06:19 -05:00
12 lines
226 B
C
12 lines
226 B
C
/* SPDX-License-Identifier: LGPL-2.1+ */
|
|
#include "rawmidi.h"
|
|
#include "ump.h"
|
|
#include "ump_msg.h"
|
|
|
|
#ifndef DOC_HIDDEN
|
|
struct _snd_ump {
|
|
snd_rawmidi_t *rawmidi;
|
|
unsigned int flags;
|
|
int is_input;
|
|
};
|
|
#endif /* DOC_HIDDEN */
|