blob: 4e06da71d94ec39ca3a82f3047d9c44f6a8b0d4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* Copyright (c) 2015 Hanspeter Portner (dev@open-music-kontrollers.ch)
*
* This is free software: you can redistribute it and/or modify
* it under the terms of the Artistic License 2.0 as published by
* The Perl Foundation.
*
* This source is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Artistic License 2.0 for more details.
*
* You should have received a copy of the Artistic License 2.0
* along the source as a COPYING file. If not, obtain it from
* http://www.perlfoundation.org/artistic_license_2_0.
*/
#ifndef _MOONY_API_MIDI_H
#define _MOONY_API_MIDI_H
#include <moony.h>
typedef struct _midi_msg_t midi_msg_t;
struct _midi_msg_t {
uint8_t type;
const char *key;
};
int
_lmidiresponder(lua_State *L);
extern const luaL_Reg lmidiresponder_mt [];
extern const midi_msg_t midi_msgs [];
extern const midi_msg_t controllers [];
#endif
|