blob: 18f7a62833cd27d2ada5106f8b9f71c4bf0bd0b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __IN_SYNTH_CLI_H__
#define __IN_SYNTH_CLI_H__
#include <string>
using namespace std;
void do_in_synth_cli();
//only use this, if you don't want the file-watches to be updated
//i.e., only when reloading a program!
void lock_and_load_program_no_watch_updates(int prg_no, string file);
#endif
|