Loopp/src/main.cxx

32 lines
335 B
C++
Raw Normal View History

2013-04-20 12:37:36 +02:00
// Library
#include <iostream>
#include <unistd.h>
#include <jack/ringbuffer.h>
// Internal
#include "jack.hxx"
char* processDspMem = 0;
char* processOscMem = 0;
jack_ringbuffer_t* rbToDsp = 0;
jack_ringbuffer_t* rbToGui = 0;
Jack* jack = 0;
int main()
{
jack = new Jack();
jack->activate();
sleep(10);
}