First commit.

This commit is contained in:
Robin Davies
2021-08-15 12:42:46 -04:00
commit d8a6022947
264 changed files with 95068 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "pch.h"
#include "Lv2EventBufferWriter.hpp"
#include "Lv2Host.hpp"
using namespace pipedal;
Lv2EventBufferUrids::Lv2EventBufferUrids(IHost *pHost)
{
atom_Chunk = pHost->GetLv2Urid(LV2_ATOM__Chunk);
atom_Sequence = pHost->GetLv2Urid(LV2_ATOM__Sequence);
midi_Event = pHost->GetLv2Urid(LV2_MIDI__MidiEvent);
}