On Sun, 3 Aug 2014, silvioprog wrote:
On Fri, Aug 1, 2014 at 4:43 AM, Michael Van Canneyt
wrote:
On Thu, 31 Jul 2014, Saunders, Rich wrote:
On 2014-07-31 12:48, Michael Van Canneyt wrote:
I created a FPC program to migrate a mantis bugtracker database from
MySQL
Aaaargh, difficult t find help here...
In the original thread
>> [fpc-devel] (hack) calling fpc libraries from other languages on
>> freebsd/amd64
>> of Michal Wallace michal.wallace at gmail.com
Michael Wallace said that he has find the solution :=>
>> Anyway, the problem appears to be in thi
Hello.
Fpc library compiled on freeBSD are unusable.
Python, Java and even fpc applications can not use them...
Look at that (works with Linux): =>
>> The fpc library :=>
library test ;
{$mode objfpc}
procedure fpctest();
begin
writeln('OK, it works...');
end;
exports
fpctest
back in the [g]?olden days of TP6, i used to be able to set an exitproc
procedure that would be executed any time my program exited for any reason...
something like
exitproc := @myexitproc;
is this still able to be done easily? does it work even if there's an untrapped
exception?
--
NO