mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-28 01:40:08 -05:00
10 lines
162 B
C
10 lines
162 B
C
|
|
/* SPDX-License-Identifier: LGPL-2.1+ */
|
||
|
|
#include "rawmidi.h"
|
||
|
|
#include "ump.h"
|
||
|
|
|
||
|
|
struct _snd_ump {
|
||
|
|
snd_rawmidi_t *rawmidi;
|
||
|
|
unsigned int flags;
|
||
|
|
int is_input;
|
||
|
|
};
|