Remy Lebeau - 2018-07-05
{----------------------------Public types------------------------------}
type

  {Make sure all the required types are available}
{$ifdef BCB6OrDelphi6AndUp}
  {$if CompilerVersion < 20}
  PByte = PAnsiChar;  // <-- REMOVE COMPLETELY, PByte EXISTS IN D/CB 6+!
  ...
  {$ifend}
  ...
{$else}
  PByte = PAnsiChar; // <-- PByte EXISTS IN D/CB 5, TOO! Not sure about D/CB 4, though...
  ...  
{$endif}