Subject | Re: Baffled by UDF results |
---|---|
Author | Peter |
Post date | 2004-04-16T11:11Z |
Dimitry
Here is the database declaration:
declare external function Total
NUMERIC(18,4), NUMERIC(18,4), NUMERIC(18,4)
returns
NUMERIC(18,4) by value
entry_point 'Total'
module_name 'pcUDF';
Regards
Peter
--- In firebird-support@yahoogroups.com, "Dimitry Sibiryakov"
<SD@t...> wrote:
Here is the database declaration:
declare external function Total
NUMERIC(18,4), NUMERIC(18,4), NUMERIC(18,4)
returns
NUMERIC(18,4) by value
entry_point 'Total'
module_name 'pcUDF';
Regards
Peter
--- In firebird-support@yahoogroups.com, "Dimitry Sibiryakov"
<SD@t...> wrote:
> On 16 Apr 2004 at 6:53, Peter wrote:in
>
> >The Exact Declaration and function is:
> >function Total(var V1,V2,V3: currency): currency; cdecl; export;
> >
> >function Total(var V1,V2,V3: currency): currency;
> >begin
> > result := V1+V2+V3;
> >end;
>
> Ok. Make another step and show us declaration of this function
> database.
>
> SY, Dimitry Sibiryakov.