Vuo  2.0.0
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;
28 
29  char blah[42];
31 
35 
36 #define VuoMidiController_SUPPORTS_COMPARISON
37 bool VuoMidiController_areEqual(const VuoMidiController value1, const VuoMidiController value2);
39 
43 static inline VuoMidiController VuoMidiController_make(unsigned char channel, unsigned char controllerNumber, unsigned char value) __attribute__((const));
44 static inline VuoMidiController VuoMidiController_make(unsigned char channel, unsigned char controllerNumber, unsigned char value)
45 {
47  mn.channel = channel;
48  mn.controllerNumber = controllerNumber;
49  mn.value = value;
50  return mn;
51 }
52 
54 
62