I am in trying to learn POCO (and C), and would appreciate some help (Martin
Foster, you around?).
I tried the example for TweenGetStart on pg 23 of the Addendum to the Ref
manual. To make it work I had to use:
int ptcount, *x, *y;
instead of:
int *ptcount, **x, **y;
and I had to add
int Success = 0;
Would like to know if my changes were really necessary, or if I missed
something. Thanks!