fpc/tests/tbs/tb0497a.pp
daniel 190cdc6f4b * Isolated IE200311075 bug found today
git-svn-id: trunk@1871 -
2005-12-02 21:05:28 +00:00

23 lines
444 B
ObjectPascal

unit tb0497a;
{$inline on}
interface
function compress(dest:Pchar;var destLen:cardinal; source : Pchar; sourceLen:cardinal):longint;inline;
implementation
uses tb0497b;
function compress(dest:Pchar;var destLen:cardinal; source : Pchar; sourceLen:cardinal):longint;inline;
type Pbytearray=^Tbytearray;
Tbytearray=array[0..0] of byte;
begin
compress:=tb0497b.compress(Pbyte(dest),destlen,Pbytearray(source)^,sourcelen);
end;
end.