Re: [PD] passing multiple arugments to new_ routine

2006-12-04 Thread Charles Henry
Thanks, Frank and Mathieu It is 100% crystal clear to me now. Thanks so much Chuck ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] passing multiple arugments to new_ routine

2006-12-03 Thread Charles Henry
I can't remember how to pass multiple arguments to an external. I need to pass any number of float arguments. I think it goes something like void external_tilde_new(float *f_args, float num_args) I've been searching thru the cvs repo to see if I can find an example, but I haven't found one

Re: [PD] passing multiple arugments to new_ routine

2006-12-03 Thread Frank Barknecht
Hallo, Charles Henry hat gesagt: // Charles Henry wrote: I can't remember how to pass multiple arguments to an external. I need to pass any number of float arguments. I think it goes something like void external_tilde_new(float *f_args, float num_args) I've been searching thru the cvs

Re: [PD] passing multiple arugments to new_ routine

2006-12-03 Thread Mathieu Bouchard
On Sun, 3 Dec 2006, Charles Henry wrote: int argc is the count of the number of arguments, and t_atom *argv must be the vector of arguments themselves. (this I'm inferring from seeing it in code) I still don't get what t_symbol *s is for, yet. Thanks, The s stands for selector, it's the