Vuo 2.4.4
Loading...
Searching...
No Matches
VuoMidiController.h
Go to the documentation of this file.
1
10#pragma once
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
27typedef struct
28{
29 unsigned char channel;
30 unsigned char controllerNumber;
31 unsigned char value;
33
34#define VuoMidiController_SUPPORTS_COMPARISON
35
37struct json_object * VuoMidiController_getJson(const VuoMidiController value);
39
42
46static inline VuoMidiController VuoMidiController_make(unsigned char channel, unsigned char controllerNumber, unsigned char value) __attribute__((const));
47static inline VuoMidiController VuoMidiController_make(unsigned char channel, unsigned char controllerNumber, unsigned char value)
48{
50 mn.channel = channel;
51 mn.controllerNumber = controllerNumber;
52 mn.value = value;
53 return mn;
54}
55
57
64
69#ifdef __cplusplus
70}
71#endif