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

fix code example

parent 6673ed17
No related branches found
No related tags found
No related merge requests found
......@@ -299,8 +299,8 @@ For some of Pd's internals like array visualization, the message length may
vary. For these _special_ cases, the following functions allow the developer
to iteratively build up a message to send to the GUI.
```
gui_start_vmess(const char *msg, const char *format, ...); // send a message to the gui without terminating it
```c
gui_start_vmess(const char *msg, const char *format, ...);
gui_start_array(); // start an array
gui_f(t_float float); // floating point array element (t_float)
gui_i(int int); // integer array element (int)
......
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