Re: [fpc-pascal] FPC 2.2.0 for DOS

2007-09-11 Thread Daniël Mantione
Op Tue, 11 Sep 2007, schreef Andreas Berger: > Daniël Mantione wrote: > > > > > Can someone tell me what needs to be done to have FPC 2.2.0 for DOS? > > > > > > > Well, this time it is in good state, for a change. A release needs to be > > build and tested to work and install correctly. > >

Re: [fpc-pascal] FPC 2.2.0 for DOS

2007-09-11 Thread Andreas Berger
Daniël Mantione wrote: Can someone tell me what needs to be done to have FPC 2.2.0 for DOS? Well, this time it is in good state, for a change. A release needs to be build and tested to work and install correctly. Is this in the works? If not how do I compile (and especially test) th

Re: [fpc-pascal] FPC 2.2.0 for DOS

2007-09-11 Thread Daniël Mantione
Op Tue, 11 Sep 2007, schreef Andreas Berger: > Can someone tell me what needs to be done to have FPC 2.2.0 for DOS? Well, this time it is in good state, for a change. A release needs to be build and tested to work and install correctly. Daniël___ fp

[fpc-pascal] FPC 2.2.0 for DOS

2007-09-11 Thread Andreas Berger
Can someone tell me what needs to be done to have FPC 2.2.0 for DOS? Regards, Andreas ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] handing over array of pchars to C program

2007-09-11 Thread Marc Santhoff
Am Montag, den 03.09.2007, 09:31 +0200 schrieb Marco van de Voort: > > has anyone managed to build in a pascal program what in C is a > > > > char *strings[] > > > > and use it from C? > > Same as char**strings so ppchar. The missing link. :) > > In pascal terms this is a single dimension

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Daniël Mantione
Op Tue, 11 Sep 2007, schreef Johann Glaser: > Hi! > > > > procedure abc(const x:array of byte); > > > > > > begin > > > end; > > > > > > var b:array[0..15] of byte; > > > > > > begin > > > abc(b[0..9]); > > > end; > > > > I see, pretty neat for handling array row-wise or the like, thanks.

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Johann Glaser
Hi! > > procedure abc(const x:array of byte); > > > > begin > > end; > > > > var b:array[0..15] of byte; > > > > begin > > abc(b[0..9]); > > end; > > I see, pretty neat for handling array row-wise or the like, thanks. Is it also possible to run abc(b[2..9]); i.e. using a start-index diffe

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Marc Santhoff
Am Dienstag, den 11.09.2007, 15:17 +0200 schrieb Joost van der Sluis: > Op dinsdag 11-09-2007 om 14:47 uur [tijdzone +0200], schreef Marc > Santhoff: > > Am Montag, den 10.09.2007, 12:56 +0200 schrieb Joost van der Sluis: > > > > Since this page isn't already up: > > > > > http://wiki.freepascal

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Marc Santhoff
Am Dienstag, den 11.09.2007, 15:13 +0200 schrieb Daniël Mantione: > > Can someone please give a short explanation of this item?: > > > > > * pointer[low..high] syntax to pass C-style pointer arrays to procedures > > > using open arrays > > If you allocate dynamic sized structures using poi

Fwd: [fpc-devel] Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Jonas Maebe
Sent to wrong mailing list (web mail ...) - Doorgestuurd bericht van [EMAIL PROTECTED] - Datum: Tue, 11 Sep 2007 16:18:03 +0200 Van: Jonas Maebe <[EMAIL PROTECTED]> Antwoorden aan:FPC developers' list <[EMAIL PROTECTED]> Onderwerp: [fpc-devel] Re: [fpc-pascal] Freepascal 2.2.0

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Joost van der Sluis
Op dinsdag 11-09-2007 om 14:47 uur [tijdzone +0200], schreef Marc Santhoff: > Am Montag, den 10.09.2007, 12:56 +0200 schrieb Joost van der Sluis: > > Since this page isn't already up: > > > http://wiki.freepascal.org/User_Changes_2.2.0 > > Can someone please give a short explanation of this ite

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Daniël Mantione
Op Tue, 11 Sep 2007, schreef Marc Santhoff: > Am Montag, den 10.09.2007, 12:56 +0200 schrieb Joost van der Sluis: > > Since this page isn't already up: > > > http://wiki.freepascal.org/User_Changes_2.2.0 > > Can someone please give a short explanation of this item?: > > > * pointer[low..h

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Marc Santhoff
Am Montag, den 10.09.2007, 12:56 +0200 schrieb Joost van der Sluis: Since this page isn't already up: > http://wiki.freepascal.org/User_Changes_2.2.0 Can someone please give a short explanation of this item?: > * pointer[low..high] syntax to pass C-style pointer arrays to procedures > us

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Marc Santhoff
Am Montag, den 10.09.2007, 12:56 +0200 schrieb Joost van der Sluis: > The Free Pascal Compiler team is pleased to announce the release of FPC > 2.2.0! Many thanks to all people making this happen! Although I'm not an every day user of fpc and lazarus it's a great gift to have such mature tools

Re: [fpc-pascal] Pascals unit for associate arrays?

2007-09-11 Thread Marco van de Voort
> Is there any unit, or built in functionality, to do the equivalent of > perl's associate arrays or Python's dictionaries? > > > What I am trying todo is to parse some lines and to store ocurrences of > certain strings. > > For example > string1 > string2 > string1 > string3 > string2 > > Wh

Re: [fpc-pascal] Freepascal 2.2.0 released

2007-09-11 Thread Bernd Mueller
Joost van der Sluis wrote: The Free Pascal Compiler team is pleased to announce the release of FPC 2.2.0! Congratulations and thank you very much. Regards, Bernd. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.o

[fpc-pascal] FPC 2.2 article made it onto OSNews.com

2007-09-11 Thread Graeme Geldenhuys
Nicely done Joost! http://www4.osnews.com/story/18592/Cross-Platform_Development_with_Free_Pascal_2.2.0 ... or a shorter link: http://tinyurl.com/ywzyvr Regards, - Graeme - ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.f