The African Chief wrote:
In bpcompat's GPCTYPES unit, I have this;
{$ifdef _Borland_16_Bit_}
Is this defined by default in your unit? (Otherwise it might be confusing for BP->gpc programmers.)
Type Single = __short__ Real; Double = Real; Extended = __long__ Real; ShortInt = __byte__ Integer; LongInt = Integer; Comp = __longlong__ Integer; Integer16 = __short__ Integer; Word = __unsigned__ Integer16; {$endif _Borland_16_Bit_}
Don't forget:
Byte = __unsigned__ Shortint;
But I think you could use the "more comfortable" gpc identifiers now, just to make it a bit more readable.