Vuo  2.3.2
VuoMidiController.h
Go to the documentation of this file.
1 
10 #pragma once
11 
23 typedef struct
24 {
25  unsigned char channel;
26  unsigned char controllerNumber;
27  unsigned char value;
29 
33 
34 #define VuoMidiController_SUPPORTS_COMPARISON
35 bool VuoMidiController_areEqual(const VuoMidiController value1, const VuoMidiController value2);
37 
41 static inline VuoMidiController VuoMidiController_make(unsigned char channel, unsigned char controllerNumber, unsigned char value) __attribute__((const));
42 static 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 
60