Re: [fpc-pascal] firebird UDF

2016-06-12 Thread Dimitrios Chr. Ioannidis
Hi, Στις 2016-06-12 22:06, duilio foschi έγραψε: can somebody point me to some source code ready to be compiled for Ubuntu ? you could check this http://forum.lazarus.freepascal.org/index.php/topic,31100.msg198588.html#msg198588 . It's a UDF to store user's apache's basic authentication pa

[fpc-pascal] firebird UDF

2016-06-12 Thread duilio foschi
can somebody point me to some source code ready to be compiled for Ubuntu ? Thank you Peppe Polpo ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Firebird UDF

2008-03-17 Thread zaher dirkey
May be you UDF depend on external library try to View Dependency. On Sat, Mar 15, 2008 at 4:05 PM, Stephano <[EMAIL PROTECTED]> wrote: > >> nothing todo... > >> ok restart: > >> library pudf; > >> > >> {$mode objfpc}{$H+} > >> > >> uses > >> Classes, > >> p_func in 'p_func.pas'; > >> > >> exp

Re: [fpc-pascal] Firebird UDF

2008-03-15 Thread Stephano
nothing todo... ok restart: library pudf; {$mode objfpc}{$H+} uses Classes, p_func in 'p_func.pas'; exports pround name 'p_round'; {$R pudf.res} begin // DECLARE EXTERNAL FUNCTION pround // DOUBLE PRECISION, INTEGER // RETURNS DOUBLE PRECISION BY VALUE // ENTRY_POINT 'pudf_pround

RE: [fpc-pascal] Firebird UDF

2008-03-15 Thread Codebue Fabio - P-Soft
I learn about all your tips... but nothing todo. I try to summarize I'm using firebird 2.0.3 in windows vista environment. pudf was compiled with fpc 2.0.4 and created with lazarus 0.9.22 project file library pudf; {$mode objfpc}{$H+} uses Classes, p_func in 'p_func.pas'; export

Re: [fpc-pascal] Firebird UDF

2008-03-14 Thread zaher dirkey
0.839435 > > Fax: +39.030.5100306 > > Mobile: +39.348.3515786 > > .-. > > Web : www.p-soft.biz > > EMail: [EMAIL PROTECTED] > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On B

Re: [fpc-pascal] Firebird UDF

2008-03-14 Thread zaher dirkey
--. > Web : www.p-soft.biz > EMail: [EMAIL PROTECTED] > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Michael Van > Canneyt > Sent: Thursday, March 13, 2008 10:24 AM > To: FPC-Pascal users discussions > Sub

RE: [fpc-pascal] Firebird UDF

2008-03-13 Thread Codebue Fabio - P-Soft
---. Web : www.p-soft.biz EMail: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephano Sent: Thursday, March 13, 2008 8:09 PM To: FPC-Pascal users discussions Subject: Re: [fpc-pascal] Firebird UDF Codebue Fabio - P-Soft wrot

RE: [fpc-pascal] Firebird UDF

2008-03-13 Thread Codebue Fabio - P-Soft
5786 .-. Web : www.p-soft.biz EMail: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephano Sent: Thursday, March 13, 2008 8:09 PM To: FPC-Pascal users discussions Subject: Re: [fpc-pascal] Firebird UDF Codebue Fabio - P-

Re: [fpc-pascal] Firebird UDF

2008-03-13 Thread Stephano
Codebue Fabio - P-Soft wrote: nothing todo... ok restart: library pudf; {$mode objfpc}{$H+} uses Classes, p_func in 'p_func.pas'; exports pround name 'p_round'; {$R pudf.res} begin // DECLARE EXTERNAL FUNCTION pround // DOUBLE PRECISION, INTEGER // RETURNS DOUBLE PRECISION BY VAL

RE: [fpc-pascal] Firebird UDF

2008-03-13 Thread Codebue Fabio - P-Soft
nothing todo... ok restart: library pudf; {$mode objfpc}{$H+} uses Classes, p_func in 'p_func.pas'; exports pround name 'p_round'; {$R pudf.res} begin // DECLARE EXTERNAL FUNCTION pround // DOUBLE PRECISION, INTEGER // RETURNS DOUBLE PRECISION BY VALUE // ENTRY_POINT 'pudf_pround'

Re: [fpc-pascal] Firebird UDF

2008-03-13 Thread Stephano
Codebue Fabio - P-Soft wrote: This is my UDF source library pudf; {$mode objfpc}{$H+} uses Classes; function pround(var valore: real; ndec: integer):real;export; var i: integer; risultato: real; ndivisore: integer; begin risultato:= valore; ndivisore:= 1; for i:= 1 t

RE: [fpc-pascal] Firebird UDF

2008-03-13 Thread Codebue Fabio - P-Soft
. Web : www.p-soft.biz EMail: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Van Canneyt Sent: Thursday, March 13, 2008 10:24 AM To: FPC-Pascal users discussions Subject: RE: [fpc-pascal] Firebird UDF On Thu, 13 Mar 2008, Cod

RE: [fpc-pascal] Firebird UDF

2008-03-13 Thread Michael Van Canneyt
t; [mailto:[EMAIL PROTECTED] On Behalf Of Michael Van > Canneyt > Sent: Thursday, March 13, 2008 9:52 AM > To: [EMAIL PROTECTED]; FPC-Pascal users discussions > Subject: Re: [fpc-pascal] Firebird UDF > > > > On Thu, 13 Mar 2008, Codebue Fabio - P-Soft wrote: > > &

RE: [fpc-pascal] Firebird UDF

2008-03-13 Thread Codebue Fabio - P-Soft
2008 9:52 AM To: [EMAIL PROTECTED]; FPC-Pascal users discussions Subject: Re: [fpc-pascal] Firebird UDF On Thu, 13 Mar 2008, Codebue Fabio - P-Soft wrote: > This is my UDF source > > library pudf; > {$mode objfpc}{$H+} > uses > Classes; > > function pro

Re: [fpc-pascal] Firebird UDF

2008-03-13 Thread Michael Van Canneyt
On Thu, 13 Mar 2008, Codebue Fabio - P-Soft wrote: > This is my UDF source > > library pudf; > {$mode objfpc}{$H+} > uses > Classes; > > function pround(var valore: real; ndec: integer):real;export; > var > i: integer; > risultato: real; > ndivisore: integer; > begin > r

[fpc-pascal] Firebird UDF

2008-03-13 Thread Codebue Fabio - P-Soft
This is my UDF source library pudf; {$mode objfpc}{$H+} uses Classes; function pround(var valore: real; ndec: integer):real;export; var i: integer; risultato: real; ndivisore: integer; begin risultato:= valore; ndivisore:= 1; for i:= 1 to ndec do begin risulta