[fpc-pascal] Android4Pascal - How Does it Work?

2011-06-18 Thread Lennie De Villiers
Hi, How does this work? I see it creates bindings but how does it bind the Pascal code with the Java code? Thanks ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: RE : RE : RE : [fpc-pascal] Installing FPC 2.4.4 for Ubuntu / Mint+otherthoughts

2011-06-18 Thread Peter
The RPM and deb's are generated if there is enough interest Looking at http://www.freepascal.org/down/x86_64/linux-ftp.freepascal.org.var the rpm is already there. Ubuntu/MInt users should have the 'alien' tool in their repositories which can easily create a usable .deb file from a .rpm

[fpc-pascal] Best integer type to be used for string indexes

2011-06-18 Thread Vladimir Zhirov
Hi, Reviewing a bunch of my string processing functions made me wonder what integer type should I use for position / length parameters. I used to plain "Integer" for this task, but looking through RTL and LCL code I noticed that sometimes SizeInt and even PtrInt are also used: - Length, Copy us