Vuo  1.2.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
VuoMidiNote.h File Reference

Description

VuoMidiNote C type definition.

Classes

struct  VuoMidiNote
 A music note event sent via MIDI. More...
 

Functions

VuoMidiNote VuoMidiNote_makeFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
json_objectVuoMidiNote_getJson (const VuoMidiNote mn)
 Encodes value as a JSON object.
 
char * VuoMidiNote_getSummary (const VuoMidiNote mn)
 Returns a compact string representation of value (comma-separated coordinates).
 
bool VuoMidiNote_areEqual (const VuoMidiNote value1, const VuoMidiNote value2)
 Returns true if the channel, note status (on/off), velocity, and note number all match.
 
static VuoMidiNote VuoMidiNote_make (unsigned char channel, bool isNoteOn, unsigned char velocity, unsigned char noteNumber) __attribute__((const ))
 Returns a note event with the specified values.
 
VuoMidiNote VuoMidiNote_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoMidiNote_getString (const VuoMidiNote value)
 Automatically generated function.