* fixed uint setting. MSDOS is also defined for the go32v2 target, so

use first a check for FPC and if not found then check MSDOS
This commit is contained in:
peter 2000-01-12 23:21:59 +00:00
parent c8b298b9ac
commit db1631b118

View File

@ -23,12 +23,12 @@ type
{$ENDIF}
intf = int;
{$IFDEF MSDOS}
uInt = Word;
{$ELSE}
{$IFDEF FPC}
uInt = Longint; { 16 bits or more }
{ Should be cardinal, but that crashes }
{$ELSE}
{$IFDEF MSDOS}
uInt = Word;
{$ENDIF}
{$ENDIF}
uIntf = uInt;