Vuo 2.4.2
Loading...
Searching...
No Matches
VuoMidiController.h
Go to the documentation of this file.
1
10#pragma once
11
23typedef struct
24{
25 unsigned char channel;
26 unsigned char controllerNumber;
27 unsigned char value;
29
33
34#define VuoMidiController_SUPPORTS_COMPARISON
37
41static inline VuoMidiController VuoMidiController_make(unsigned char channel, unsigned char controllerNumber, unsigned char value) __attribute__((const));
42static inline VuoMidiController VuoMidiController_make(unsigned char channel, unsigned char controllerNumber, unsigned char value)
43{
45 mn.channel = channel;
46 mn.controllerNumber = controllerNumber;
47 mn.value = value;
48 return mn;
49}
50
52
59