I´d like to make a feature request =)

If you change the beginning of your units from this:

{$mode objfpc}{$H+}

To this:

{$ifdef fpc}
 {$mode objfpc}{$H+}
{$endif}

{$ifndef fpc}
 {$define Windows}
{$endif}

{$ifdef win32}
 {$define Windows}
{$endif}

And then change all references to {$ifdef win32} to {$ifdef Windows} it will:

* Most likely work for 64 bits Windows and Windows CE
* Be compatible with Delphi

The ifdef win32 define windows is necessary to be compatible with Free
Pascal <= 2.0.2

thanks,
--
Felipe Monteiro de Carvalho

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to