-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2012-06-04 20:25, Tebjan Halm - VVVV wrote:
int glist_getindex(t_glist *x, t_gobj *y);
but no body of it. does anyone know where it is and why the compiler can't find the reference?
you see a forward declaration of a function defined by pd, but not exposed through it's headers.
for older versions of Pd (<0.43) most of those private functions will definitely be _unavailable_ on w32 (where you have to explicitely export symbols in order to make them available for other dlls; un*x is a usually less strict about exporting symbols). with 0.43 a number of those "private" functions have been marked as exported, so they might work with w32 as well.
iemguts uses non-public functions quite a lot (hence it's power and name)
fgmasdr IOhannes