2022-11-29 16:02:25 +01:00
|
|
|
/* SPDX-License-Identifier: LGPL-2.1+ */
|
|
|
|
|
#include "rawmidi.h"
|
|
|
|
|
#include "ump.h"
|
2022-11-29 16:30:47 +01:00
|
|
|
#include "ump_msg.h"
|
2022-11-29 16:02:25 +01:00
|
|
|
|
|
|
|
|
struct _snd_ump {
|
|
|
|
|
snd_rawmidi_t *rawmidi;
|
|
|
|
|
unsigned int flags;
|
|
|
|
|
int is_input;
|
|
|
|
|
};
|