Jamoma API
0.6.0.a19
|
Jamoma For Max Shared Library. More...
#include "Jamoma.h"
Go to the source code of this file.
Classes | |
struct | t_send |
Send Object. More... | |
Functions | |
void * | send_new (t_symbol *s, long argc, t_atom *argv) |
Called at object instantiation. More... | |
void | send_free (t_send *x) |
Free up and dispose of the object. More... | |
void | send_assist (t_send *x, void *b, long msg, long arg, char *dst) |
Method for displaying assist strings for inlets and outlets. More... | |
void | send_bang (t_send *x) |
Forward a bang to the associated receive objects. More... | |
void | send_int (t_send *x, long value) |
Forward an int to the associated receive objects. More... | |
void | send_float (t_send *x, double value) |
Forward a float to the associated receive objects. More... | |
void | send_list (t_send *x, t_symbol *msg, long argc, t_atom *argv) |
Forward a list or message to the associated receive objects. More... | |
Jamoma For Max Shared Library.
Send messages to remote
Definition in file Max/library/Internals/j.send.cpp.
void send_assist | ( | t_send * | 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 163 of file Max/library/Internals/j.send.cpp.
void send_bang | ( | t_send * | x | ) |
Forward a bang to the associated receive objects.
c | Pointer to this object. |
Definition at line 247 of file Max/library/Internals/j.send.cpp.
References send_list().
void send_float | ( | t_send * | x, |
double | value | ||
) |
Forward a float to the associated receive objects.
c | Pointer to this object. |
value | The value to send. |
Definition at line 261 of file Max/library/Internals/j.send.cpp.
References send_list().
void send_free | ( | t_send * | x | ) |
Free up and dispose of the object.
x | Pointer to this object. |
Definition at line 153 of file Max/library/Internals/j.send.cpp.
References t_send::sender.
void send_int | ( | t_send * | x, |
long | value | ||
) |
Forward an int to the associated receive objects.
c | Pointer to this object. |
value | The value to send. |
Definition at line 252 of file Max/library/Internals/j.send.cpp.
References send_list().
void send_list | ( | t_send * | x, |
t_symbol * | msg, | ||
long | argc, | ||
t_atom * | argv | ||
) |
Forward a list or message to the associated receive objects.
c | Pointer to this object. |
msg | The message to send as pointer to a symbol. |
argc | The number of arguments of the message. |
argv | The arguments as a pointer to an array of atoms. |
Definition at line 269 of file Max/library/Internals/j.send.cpp.
References jamoma_sender_send(), and t_send::sender.
Referenced by send_bang(), send_float(), and send_int().
void * send_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 135 of file Max/library/Internals/j.send.cpp.