blob: a922f3c8bc6c063cecf94a30ee1d3c16092f22de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __NOTE_LOADER_H__
#define __NOTE_LOADER_H__
#include <string>
#include <jack/jack.h>
#include "programs.h"
using namespace std;
void load_note_from_so(string file, program_t &prog); //throws string
#endif
|