Re: [fpc-pascal] generic, specialize keywords in mode delphi in FPC trunk

2011-04-14 Thread Sven Barth
Am 14.04.2011 00:07, schrieb Paul Ishenin: 13.04.2011 21:51, Sven Barth wrote: Would you mind if I'd try to continue/finish that work? Please do. Ok, thanks. I created a branch here: http://svn.freepascal.org/cgi-bin/viewvc.cgi/branches/svenbarth/generics/ Regards, Sven

Re: [fpc-pascal] generic, specialize keywords in mode delphi in FPC trunk

2011-04-14 Thread Paul Ishenin
14.04.2011 15:13, Sven Barth wrote: Ok, thanks. I created a branch here: http://svn.freepascal.org/cgi-bin/viewvc.cgi/branches/svenbarth/generics/ Yes, but please wait with the start :) First you need to read generics related threads on the core list. There were some unsolved problems on

Re: [fpc-pascal] generic, specialize keywords in mode delphi in FPC trunk

2011-04-14 Thread Sven Barth
Am 14.04.2011 09:43, schrieb Paul Ishenin: 14.04.2011 15:13, Sven Barth wrote: Ok, thanks. I created a branch here: http://svn.freepascal.org/cgi-bin/viewvc.cgi/branches/svenbarth/generics/ Yes, but please wait with the start :) First you need to read generics related threads on the core

Re: [fpc-pascal] Re: android share library with classes unit

2011-04-14 Thread Felipe Monteiro de Carvalho
Forwarding to the mailling list: On Thu, Apr 14, 2011 at 4:09 AM, heru susanto her...@gmail.com wrote: I've done the second step here : #!/bin/sh /usr/local/bin/arm-linux-as_org -march=armv6 -meabi=5 -mfloat-abi=softfp -mfpu=vfp3 $@ my problem have been solved. my next problem is dynamic

[fpc-pascal] Availability of RawByteString

2011-04-14 Thread Jean-Marc BOTTURA
Hello, we need to use RawByteString with FreePascal and I saw it's implemented in cpstrnew which is in progress. Do you know when this branch will be integrated into a fpc release ? Thanks in advance for your reply. Best regards, ___ fpc-pascal

Re: [fpc-pascal] Availability of RawByteString

2011-04-14 Thread Florian Klaempfl
Am 14.04.2011 10:57, schrieb Jean-Marc BOTTURA: Hello, we need to use RawByteString with FreePascal and I saw it's implemented in cpstrnew which is in progress. Do you know when this branch will be integrated into a fpc release ? No. ___ fpc-pascal

[fpc-pascal] Variable argument list for cdecl functions

2011-04-14 Thread Wimpie Nortje
Hi How do one access the array of const members for a function declared as cdecl? Eg. function A(args: array of const): integer;cdecl; I get a warning that cdecl'ared functions have no high parameter, which now makes sense to me since I tried to use High(args)

Re: [fpc-pascal] Variable argument list for cdecl functions

2011-04-14 Thread Jonas Maebe
On 14 Apr 2011, at 14:49, Wimpie Nortje wrote: How do one access the array of const members for a function declared as cdecl? Eg. function A(args: array of const): integer;cdecl; You can't. Development FPC versions refuse to compile the above declaration. It was a bug in previous

Re[6]: [fpc-pascal] read lines at end of file

2011-04-14 Thread José Mejuto
Hello John, Thursday, April 14, 2011, 3:26:48 PM, you wrote: JL Hi there, thanks for this - looks a very complete function. I hadn't JL realised that best way would be to use streaming! I'm trying to write a 3 JL line test program that just gets last 4 lines of a file. JL I'm not very familiar