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...
 

Detailed Description

Jamoma For Max Shared Library.

Send remote audio signals

Authors
Tim Place, Trond Lossius

Definition in file j.send~.cpp.

Function Documentation

void audiosend_assist ( t_audiosend *  x,
void *  b,
long  msg,
long  arg,
char *  dst 
)

Method for displaying assist strings for inlets and outlets.

Parameters
xPointer 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.

Parameters
xPointer to this object
attrPointer 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.

Parameters
xPointer 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.

Parameters
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.

Parameters
xPointer 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.

Parameters
sPointer to symbol bassed as message argument to the object.
argcThe number of arguments passed to the object.
argvPointer to arguments as an array of atoms.
Returns
Pointer to the newly created object.

Definition at line 144 of file j.send~.cpp.