void *index_new(t_symbol *s, long chan) { t_index *x = object_alloc(index_class); dsp_setup((t_pxobject *)x, 1); intin((t_object *)x,1); outlet_new((t_object *)x, "signal"); index_set(x, s); index_in1(x,chan); return (x); }
void *index_new(t_symbol *s, long chan) { t_index *x = (t_index *)newobject(index_class); dsp_setup((t_pxobject *)x, 1); intin((t_object *)x,1); outlet_new((t_object *)x, "signal"); x->l_sym = s; index_in1(x,chan); return (x); }