Re: Status of Direct Calling Libraries
- From: "John O'Harrow" <john@xxxxxxxxxxxxxxxxxxxx>
- Date: Sun, 30 Oct 2005 12:35:17 -0000
"Lars G" <larsbg_remove_@xxxxxxxxx> wrote in message
news:4364ac0a$1@xxxxxxxxxxxxxxxxxxxxxxxxx
>
> Great then we can continuing on the Libraries
>
> The latest one I can find is ver 0.3 But there is mising a file !
Ver 0.3 is still the latest. I believe the missing file was "fastcode.inc"
Since it is a very small file, I have listed it below
// FastCode RTL Replacement definitions //
{$DEFINE FastcodeRTL}
{.$DEFINE FastCodeBlended}
{.$DEFINE FastCodeCPUID}
{.$DEFINE FastCodePascal}
{Default to FastcodeRTL if No Fastcode Compile Option Selected}
{$IFNDEF FastCodeBlended}
{$IFNDEF FastCodePascal}
{$IFNDEF FastCodeCPUID}
{$DEFINE FastcodeRTL}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{Ensure Only One Fastcode Compile Option (Best) is Selected}
{$IFDEF FastCodeCPUID}
{$UNDEF FastCodeBlended}
{$UNDEF FastcodeRTL}
{$UNDEF FastCodePascal}
{$ENDIF}
{$IFDEF FastCodeBlended}
{$UNDEF FastcodeRTL}
{$UNDEF FastCodePascal}
{$ENDIF}
{$IFDEF FastcodeRTL}
{$UNDEF FastCodePascal}
{$ENDIF}
// Delphi Version definitions //
{$IFDEF VER120}
{$DEFINE Delphi4}
{$ENDIF}
{$IFDEF VER130}
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$ENDIF}
{$IFDEF VER140}
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$DEFINE Delphi6}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
{$IFDEF VER150}
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$DEFINE Delphi6}
{$DEFINE Delphi7}
{$WARN UNSAFE_CODE OFF}
{$WARN UNSAFE_TYPE OFF}
{$WARN UNSAFE_CAST OFF}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
{$IFDEF VER170}
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$DEFINE Delphi6}
{$DEFINE Delphi7}
{$DEFINE Delphi9}
{$WARN UNSAFE_CODE OFF}
{$WARN UNSAFE_TYPE OFF}
{$WARN UNSAFE_CAST OFF}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
{$IFDEF VER180}
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$DEFINE Delphi6}
{$DEFINE Delphi7}
{$DEFINE Delphi9}
{$DEFINE Delphi10}
{$WARN UNSAFE_CODE OFF}
{$WARN UNSAFE_TYPE OFF}
{$WARN UNSAFE_CAST OFF}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
.
- References:
- Status of Direct Calling Libraries
- From: Lars G
- Re: Status of Direct Calling Libraries
- From: Dennis
- Re: Status of Direct Calling Libraries
- From: Lars G
- Status of Direct Calling Libraries
- Prev by Date: Re: Status of Direct Calling Libraries
- Next by Date: Re: Fastcode RoundTo replacement
- Previous by thread: Re: Status of Direct Calling Libraries
- Next by thread: result double
- Index(es):
Relevant Pages
|