Skip to content
Snippets Groups Projects
Commit c60a23d9 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

add gui_x for sending hex value inside an array to the gui. Not sure if this...

add gui_x for sending hex value inside an array to the gui. Not sure if this is really necessary, but it makes it easy to send a list of open windows for one of the extant interfaces
parent 81533f20
No related branches found
No related tags found
No related merge requests found
...@@ -675,6 +675,7 @@ EXTERN void gui_start_array(void); ...@@ -675,6 +675,7 @@ EXTERN void gui_start_array(void);
EXTERN void gui_f(t_float f); /* send a float element in an array */ EXTERN void gui_f(t_float f); /* send a float element in an array */
EXTERN void gui_i(int i); /* send an int element in an array */ EXTERN void gui_i(int i); /* send an int element in an array */
EXTERN void gui_s(const char *s); /* send a string element in an array */ EXTERN void gui_s(const char *s); /* send a string element in an array */
EXTERN void gui_x(long unsigned int i);
EXTERN void gui_end_array(void); EXTERN void gui_end_array(void);
EXTERN void gui_end_vmess(void); EXTERN void gui_end_vmess(void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment