home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C!T ROM 2
/
ctrom_ii_b.zip
/
ctrom_ii_b
/
PROGRAM
/
PASCAL
/
PACKOBJ
/
TPUNPACK.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1992-05-07
|
419b
|
22 lines
{ TPUNPACK.PAS - Fast decompression routine (c) Wilbert van Leijen 1991-92 }
Unit TpUnpack;
Interface
Function Unpack(Var InBuffer, OutBuffer; CompressedSize : Word) : Word;
Implementation
{$S- }
Procedure StackOverflow;
Begin
RunError(202); { Unpack requires 29kB stack space }
end; { StackOverflow }
Function Unpack; External;
{$L UNPACK.OBJ }
end. { TpUnpack }