Subject Re: [ib-support] Disapointed (was: Writing UDF for Linux)
Author Doug Chamberlin
At 11/12/2002 11:10 AM (Tuesday), Milan Babuskov wrote:
> > I get:
> >
> > Invalid request BLR at offset 60
> > function F_MODULO is not defined
> > module name or entry point could not be found

I have zero experience with UDFs on non-Windows systems. However, perhaps
there is a clue to the problem in that the error message says "F_MODULO is
not defined" (all uppercase) when you have previously used lower case to
define everything.

Try

> declare external function F_MODULO
> integer, integer
> returns
> integer by value
> entry_point 'F_MODULO' module_name 'modulo';
> commit;

to see if that helps.