|
Jamoma API
0.6.0.a19
|
Jamoma For Max Shared Library. More...
#include "Jamoma.h"
Include dependency graph for j.send~.cpp:Go to the source code of this file.
Functions | |
| void * | audiosend_new (t_symbol *s, long argc, t_atom *argv) |
| Called at object instantiation. More... | |
| void | audiosend_free (t_audiosend *x) |
| Free up and dispose of the object. More... | |
| void | audiosend_assist (t_audiosend *x, void *b, long msg, long arg, char *dst) |
| Method for displaying assist strings for inlets and outlets. More... | |
| void | audiosend_bang (t_audiosend *x) |
| When banged, fill a menu with potential targets. More... | |
| t_int * | audiosend_perform (t_int *w) |
| Audio perform method for the object. | |
| void | audiosend_dsp (t_audiosend *x, t_signal **sp, short *count) |
| The DSP method for the object, called when compiling the audio chain. More... | |
| t_max_err | audiosend_attr_settarget (t_audiosend *x, void *attr, long argc, t_atom *argv) |
| Set the hub of the module we are sending to as an attribute. More... | |
Jamoma For Max Shared Library.
Send remote audio signals
Definition in file j.send~.cpp.
| void audiosend_assist | ( | t_audiosend * | x, |
| void * | b, | ||
| long | msg, | ||
| long | arg, | ||
| char * | dst | ||
| ) |
Method for displaying assist strings for inlets and outlets.
| x | Pointer to this object. |
| b | |
| msg | |
| argc | |
| argv |
Definition at line 182 of file j.send~.cpp.
| t_max_err audiosend_attr_settarget | ( | t_audiosend * | x, |
| void * | attr, | ||
| long | argc, | ||
| t_atom * | argv | ||
| ) |
Set the hub of the module we are sending to as an attribute.
| x | Pointer to this object |
| attr | Pointer to the attribute |
| argc | |
| argv |
Definition at line 254 of file j.send~.cpp.
| void audiosend_bang | ( | t_audiosend * | x | ) |
When banged, fill a menu with potential targets.
| x | Pointer to this class. |
Definition at line 191 of file j.send~.cpp.
| void audiosend_dsp | ( | t_audiosend * | x, |
| t_signal ** | sp, | ||
| short * | count | ||
| ) |
The DSP method for the object, called when compiling the audio chain.
| x | |
| sp | |
| count |
Definition at line 222 of file j.send~.cpp.
References audiosend_perform().
Here is the call graph for this function:| void audiosend_free | ( | t_audiosend * | x | ) |
Free up and dispose of the object.
| x | Pointer to this object. |
Definition at line 172 of file j.send~.cpp.
| void * audiosend_new | ( | t_symbol * | s, |
| long | argc, | ||
| t_atom * | argv | ||
| ) |
Called at object instantiation.
| s | Pointer to symbol bassed as message argument to the object. |
| argc | The number of arguments passed to the object. |
| argv | Pointer to arguments as an array of atoms. |
Definition at line 144 of file j.send~.cpp.