Page 1 of 1

Filtermeister problem

Posted: Wed May 12, 2004 8:41 pm
by Guest
Hi, I have been trying to join the fm mailing list, but im waiting to be accepted.. Im looking for a little help with using arrays in filtermeister, dunno if anybody here can help - cant think of anywhere else other than the mailing list to try..

ok, i am trying to initialise a simple 1 dimensional array:

OnFilterStart:{

allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve Symbol 'allocArray' is undefined

and:
OnFilterStart:{

int allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve "Error while looking for direct_declarator near "0"

I have also tried pasting the example script from:
http://www.graphicsgalaxy.com/wiki/filt ... allocArray

I recieve "Symbol 'allocArray' is undefined"

am i missing something obvious?

im using the latest version of filtermeister on win xp.

apologies if this is the wrong place to post, have looked everywhere for a solution to this..

Rob

Posted: Wed May 12, 2004 9:10 pm
by HaraldHeim
Hi, I have been trying to join the fm mailing list, but im waiting to be accepted..
You don't have to wait to get subscribed, so I suspect that there was a problem. Please send me your email address and I will add you manually.

ok, i am trying to initialise a simple 1 dimensional array:

OnFilterStart:{

allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve Symbol 'allocArray' is undefined
You probably are using the old FilterMeister 0.4.18 or 0.4.19 version that doesn't support allocArray. The latest version is only available to subscribers of the FMML mailing list.

and:
OnFilterStart:{

int allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve "Error while looking for direct_declarator near "0"
The problem is the "int" in front of allocArray. allocArray is a function, so you can't declare it as a variable.