Re: [fpc-pascal] serial ports under Unix using Freepascal

2007-10-06 Thread [EMAIL PROTECTED]
Yes, I'm studing the synaser objects... Thank's :D 2007/10/4, josepascual <[EMAIL PROTECTED]>: > > Have you taken a look to synaser inside synapse packet software > http://synapse.ararat.cz/? > > > > Jose Pascual > > > > p.d. bonito nombre "papel higienico" ;-) > > > > > > > > *De:* [EMAIL PROT

[fpc-pascal] IDE fonts and codepage

2007-10-06 Thread Frank McCormick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I followed the suggestion made sometime ago about loading cp850-8x16 font to get the line drawing characters when in the IDE on the console, but noticed then I don't have certain characters available on the keyboard, such as '/' etc. Whats the solutio

Re: [fpc-pascal] IDE fonts and codepage

2007-10-06 Thread Daniël Mantione
Op Sat, 6 Oct 2007, schreef Frank McCormick: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > I followed the suggestion made sometime ago about loading cp850-8x16 > font to get the line drawing characters when in the IDE on the console, > but noticed then I don't have certain characters

Re: [fpc-pascal] IDE fonts and codepage

2007-10-06 Thread Frank McCormick
On Sat, 06 Oct 2007 17:41:42 +0200 (CEST) Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > > I followed the suggestion made sometime ago about loading cp850-8x16 > > font to get the line drawing characters when in the IDE on the console, > > but noticed then I don't have certain characters availa

Re: [fpc-pascal] IDE fonts and codepage

2007-10-06 Thread Daniël Mantione
Op Sat, 6 Oct 2007, schreef Frank McCormick: > On Sat, 06 Oct 2007 17:41:42 +0200 (CEST) > Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > > > > > I followed the suggestion made sometime ago about loading cp850-8x16 > > > font to get the line drawing characters when in the IDE on the console,

Re: [fpc-pascal] function alias

2007-10-06 Thread Mattias Gaertner
On Thu, 4 Oct 2007 20:17:36 +0200 (CEST) Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > Op Thu, 4 Oct 2007, schreef Mattias Gaertner: > > > Yes, but I hoped to declare it in situ - without adding another > > type. ;) The reason is that I'm auto translating some C headers > > that contains ali

Re: [fpc-pascal] function alias

2007-10-06 Thread Daniël Mantione
Op Sat, 6 Oct 2007, schreef Mattias Gaertner: > On Thu, 4 Oct 2007 20:17:36 +0200 (CEST) > Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > > > > > Op Thu, 4 Oct 2007, schreef Mattias Gaertner: > > > > > Yes, but I hoped to declare it in situ - without adding another > > > type. ;) The reaso

Re: [fpc-pascal] function alias

2007-10-06 Thread ik
On 10/6/07, Mattias Gaertner <[EMAIL PROTECTED]> wrote: > On Thu, 4 Oct 2007 20:17:36 +0200 (CEST) > Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > > > > > Op Thu, 4 Oct 2007, schreef Mattias Gaertner: > > > > > Yes, but I hoped to declare it in situ - without adding another > > > type. ;) The re

Re: [fpc-pascal] function alias

2007-10-06 Thread Mattias Gaertner
On Sat, 6 Oct 2007 21:43:30 +0200 ik <[EMAIL PROTECTED]> wrote: > On 10/6/07, Mattias Gaertner <[EMAIL PROTECTED]> wrote: > > On Thu, 4 Oct 2007 20:17:36 +0200 (CEST) > > Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > Op Thu, 4 Oct 2007, schreef Mattias Gaertner: > > > > > > > Ye

Re: [fpc-pascal] function alias

2007-10-06 Thread Johann Glaser
Hi! > procedure OriginalProc(..).. {$IFDEF USEINLINE_ALIAS}inline;{$ENDIF} > begin > end; > ... > > procedure AliasProc(...); > begin > {$DEFINE USEINLINE_ALIAS} > OriginalProc(...); > {$UNDEF USEINLINE_ALIAS} > end; Are you sure this works? AFAIK the "preprocessor" doesn't follow function