blob: 6731da12d07f3d3ed29e7c6372b43ff6254ac3d4 (
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
void maybe_unload_note(program_t &prog);
#endif
|