On Mon, May 26, 2014 at 1:04 AM, Martin Peach <martin.peach@sympatico.ca> wrote:
On 2014-05-25 14:10, Alexandros Drymonitis wrote:
I'm building an external (my very first one) and it's working as
expected, only the arguments I type when I create it are not passed and
the variables set to get values from these arguments are set to zero.

The new instance routine prototype is this:
void *tabPowSine_new(t_symbol *s, short argc, t_atom argv)

Should be
void *tabPowSine_new(t_symbol *s, short argc, t_atom *argv)
, as argv is an array of exactly argc pointers to t_atoms.
I mistyped it, sorry. It is like this actually..