doublecmd/plugins/zip/Zip.dpr
Alexander Koblov ab667f7acc Create SVN.
2007-02-08 19:46:07 +00:00

29 lines
342 B
ObjectPascal

library Zip;
uses
SysUtils,
Classes,
ZipFunc in 'ZipFunc.pas';
{$E wcx}
{$R *.res}
exports
{mandatory}
OpenArchive,
ReadHeader,
ProcessFile,
CloseArchive,
SetChangeVolProc,
SetProcessDataProc,
{optional}
DeleteFiles,
GetPackerCaps;
begin
{$IFNDEF WIN32}
WriteLN('Zip plugin is loaded');
{$ENDIF}
end.