doublecmd/plugins/wcx/zip/Zip.dpr
2008-07-20 11:54:19 +00:00

33 lines
430 B
ObjectPascal

library Zip;
uses
SysUtils,
Classes,
ZipFunc in 'ZipFunc.pas';
{$E wcx}
{$R *.res}
exports
{ Mandatory }
OpenArchive,
ReadHeader,
ProcessFile,
CloseArchive,
SetChangeVolProc,
SetProcessDataProc,
{ Optional }
PackFiles,
DeleteFiles,
GetPackerCaps,
ConfigurePacker,
{ DialogAPI }
SetDlgProc;
begin
{$IFDEF UNIX}
WriteLN('Zip plugin is loaded');
{$ENDIF}
end.