doublecmd/plugins/wcx/deb/deb_def.pas
Alexander Koblov 627b9272ab ADD: deb archive plugin
FIX: Some fixes in archive plugins,
now full working rpm, cpio, deb and unbz2 plugins
2007-08-26 21:24:25 +00:00

19 lines
279 B
ObjectPascal

unit deb_def;
interface
type
deb_Header = record
filename : String[16];
time : longint;
size : longint;
pos : longint;
crc : longint;
end;
const
size_deb_files= 60;
size_deb_signature = 72;
implementation
end.