Vuo  2.4.0
VuoMidiNote.h
Go to the documentation of this file.
1
10#pragma once
11
23typedef struct
24{
25 unsigned char channel;
26 bool isNoteOn;
27 unsigned char velocity;
28 unsigned char noteNumber;
30
32struct json_object * VuoMidiNote_getJson(const VuoMidiNote value);
33char * VuoMidiNote_getSummary(const VuoMidiNote value);
34
35#define VuoMidiNote_SUPPORTS_COMPARISON
36bool VuoMidiNote_areEqual(const VuoMidiNote value1, const VuoMidiNote value2);
38
42static inline VuoMidiNote VuoMidiNote_make(unsigned char channel, bool isNoteOn, unsigned char velocity, unsigned char noteNumber) __attribute__((const));
43static inline VuoMidiNote VuoMidiNote_make(unsigned char channel, bool isNoteOn, unsigned char velocity, unsigned char noteNumber)
44{
45 VuoMidiNote mn;
46 mn.channel = channel;
47 mn.isNoteOn = isNoteOn;
48 mn.velocity = velocity;
49 mn.noteNumber = noteNumber;
50 return mn;
51}
52
54
62