11 lines
223 B
C
11 lines
223 B
C
#ifndef SCRIPT_H
|
|
#define SCRIPT_H
|
|
|
|
int script_load(const char *path);
|
|
void script_handle_note(int note);
|
|
void script_cleanup(void);
|
|
int script_handle_fzf_command(const char *type);
|
|
extern char g_selected_port[256];
|
|
|
|
#endif
|