Edit[July 8th,07]
Solved!
I had problem with bbAnimTime. The problem was down on how EBasic returns floats. Instead using floats for import return values, use double (ie: for EBasic that is ).
Instead of:
DECLARE CDECL IMPORT, bbAnimTime(BBObject o),FLOAT
do:
DECLARE CDECL IMPORT, bbAnimTime(BBObject o),DOUBLE
Solved!
I had problem with bbAnimTime. The problem was down on how EBasic returns floats. Instead using floats for import return values, use double (ie: for EBasic that is ).
Instead of:
DECLARE CDECL IMPORT, bbAnimTime(BBObject o),FLOAT
do:
DECLARE CDECL IMPORT, bbAnimTime(BBObject o),DOUBLE