home *** CD-ROM | disk | FTP | other *** search
- procedure INITIAL;
- { Initialize the necessary data for preprocessor }
-
- begin
- if (Paramcount = 3) then begin
- if (Paramstr(1) = '/R') or (Paramstr(1) = '/r') then begin
- Matl_reuse := TRUE;
- Inparm := 2;
- Outparm := 3;
- end else
- usage;
- end else if (Paramcount = 2) then begin
- Inparm := 1;
- Outparm := 2;
- end else
- usage;
-
- Line_num := 0;
- Nnodes := 0;
- Nsurf := 0;
- Continue := TRUE;
-
- writeln ('PREPROC: Converting file ',Paramstr(Inparm),' to file ',
- Paramstr(Outparm));
-
- end; { procedure INITIAL }
-