home *** CD-ROM | disk | FTP | other *** search
- Steve - for your information and add to ROS34.CQG if you wish.
-
- from: Dick Miller MANASSAS ROS 703-791-6198
-
- Change 1:
-
- Reason: Time for the day does not accumulate.
- User can call back and get another 60 minutes.
-
- Files affected: ROSINI.INC, ROSKMS.INC
-
- Description:
-
- Change line 143 of ROSINI.INC from:
-
- user_rec.laston := t;
-
- to:
-
- user_rec.laston := login_t;
-
- Change line 195 of ROSKMS.INC from:
-
- time_left := user_rec.limit + extra_time - time_on;
-
- to:
-
- time_left := user_rec.limit + extra_time - time_on - user_rec.time_today;
-
-
- Change 2:
-
- reason: To save confusion with XMODEM procedures.
- .COM files stay .OBJ like RCP/M systems.
-
- File affected: ROSRCV.INC
-
- Description:
- auto renaming .COM files to .OBJ
-
- After line 19 add:
-
- FileType : String[3];
-
- After line 176 add:
-
- i := pos('.',XfrName);
- if i = 0
- then
- FileType := ''
- else
- FileType := copy(XfrName, succ(i), length(XfrName));
- if FileType = 'COM'
- then
- begin
- FileType := 'OBJ';
- delete(XfrName, succ(i), 3);
- XfrName := XfrName + FileType;
- writeln(USR, 'Auto Renaming .COM to .OBJ');
- end;
-
-