Re: Does Fast Code units compile in D5 Standard ?
- From: Thaddy <kol@xxxxxxxxx>
- Date: Sun, 28 Aug 2005 20:03:31 +0200
bill wrote:
I have D5 Standard and the D5 compatible units for FastcodeCPUID.pas and FastMove.pas. but I still get 'Undeclared identifier' compile errors for PInteger, PByte, PIntegerArray, etc. in FastcodeAnsiStringReplace and others.
Thanks,
Bill Mudd
You can of course simply declare them yourself
Type
PInteger = ^Integer; PByte = ^Byte; TIntegerArray = array [0..0] of integer; // range checking OFF please! PintegerArray = ^Tintegerarray;
It wouldn't hurt to read something about the subject. For example the accompanying documentation?
.
- References:
- Prev by Date: Re: QC Report on Swap Function
- Next by Date: Problem with FastMM and D7
- Previous by thread: Re: Does Fast Code units compile in D5 Standard ?
- Next by thread: rdtsc vs. GetTickCount()
- Index(es):
Relevant Pages
|