// editor.h

#ifndef editor_h
#define editor_h

void set_editor_pane(int icon);
void close_editor(void);
void open_editor(void);
int edt_slider_control(int *blk);
int edt_mouse_click(int *blk, int state);
int edt_key_press(int *blk, int key, char *p);
int cmd_instrument(char *msg, int len);
int cmd_bank(char *msg, int len);
int cmd_program(char *msg, int len);
int cmd_channel(char *msg, int len);
int cmd_velocity(char *msg, int len);

#endif
