home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: Win Best Test 1
/
70001.ZIP
/
70001
/
WINWARE1
/
ARCDIB
/
CUSTOMU.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-09-26
|
466b
|
21 lines
{
Interface for YourComp.DLL to import a function "MyComp" which will
compress/decompress a block of memory passed to it using an algorithm
designed by the author of the DLL
}
Unit CustomU;
Interface
Uses WinTypes;
function MyComp(var IMAGEHANDLE: THandle;
var ORIGSIZE: LongInt;
COMPRESS: Boolean) : Boolean;
Implementation
function MyComp; external 'YOURCOMP' index 3;
Begin
End. { CustomU }