On 22/08/06, "Fabrício F. Kammer" <[EMAIL PROTECTED]> wrote:
Thanks A.J.

Do you know where can I get some example of how to do this?

Is it possible to have a conditional compile to do this?

You can achieve conditiional compiling with {$ifdef } :

{$ifdef  Win32}
  { .....  windows specific stuff .... }
{$endif}

{$ifdef  linux}
  { .....  linux specific stuff .... }
{$endif}


--
Adrian Maier
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to