home *** CD-ROM | disk | FTP | other *** search
- (*
-
- ┌────────────────[ File Information Report ]────────────────┐
- │ │
- │ Sourcefile for The Fast Commander, V3.51 and higher. │
- │ All material is protected and licensed. │
- │ (C) Copyright 1992 by EUROCON PANATIONAL CORPORATION. │
- │ Written exclusively by Floor Naaijkens for │
- │ UltiHouse Software / The ECO Group All Rights Reserved. │
- │ See various documentory files for further information │
- │ on how to handle these files. │
- │ │
- │ Filename: ATV.PAS │
- │ Version: 3.51 │
- │ Last change: 02-05-91 14:14 │
- │ Dependencies: FIL·, EXT·, MEM·, SCN·, DOS·, CRT·, │
- │ ····, ····, ····, ····, ····, ····. │
- │ │
- └───────────────────────────────────────────────────────────┘
-
- *)
- {$M 65520, 0, 655360}
- {$A-,B-,D-,E-,F-,I-,L-,N-,O-,R-,S-,V-}
-
- uses
- eco_lib, eco_atv
-
- ;
-
-
- var
- arcpanel : arcpanelobj;
-
-
-
- {main}begin
- if (
- (paramstr(1) = '?') or (paramstr(1) = '/?') or (paramstr(1) = '-?')
- ) then begin
- writeln;
- writeln('============== Arc-TV / ArchiveTeleVision =============');
- writeln('-------------------------------------------------------');
- writeln('ATV ARCHIVENAME.EXT - looks into any archive.');
- writeln('Support for ARC ARJ DWC PAK LZH LBR MD ZOO ZIP.');
- writeln('F3 or <V> will view the file currently pointed at, using FCV.COM');
- writeln('F4 or <I> will view information about the file.');
- writeln('Tagging files: <SPACE> <*> <Ins> and <Ctrl-V>.');
- writeln('If no file is tagged, other keys will do nothing.');
- writeln('If files are tagged, <ENTER> will unpack them in the');
- writeln('current directory, <DEL> will delete them.');
- writeln('For now, that''s all.');
- writeln('=======================================================');
- writeln('If your program in pascal, you can order the units,');
- writeln('with examples (like ATV.PAS (45 lines!)) and source');
- writeln('for only ƒ25,= or $15,= at UltiHouse Software,');
- writeln('Kwendelhof 173, 5044 EG Tilburg, Tel 013-635037.');
- halt(0);
- end;
- new(scn1); new(scn2); __savscn(scn1); __setblwin(false);
-
- with arcpanel do begin
- showmem := true; showreads := true;
- __atv(__normfil(paramstr(1)));
- end;
-
- __resscn(scn1);
- {happy}end.
-