home *** CD-ROM | disk | FTP | other *** search
- Unit OvrTwo;
- { This is simply an interface unit to unit OvrOne. It is }
- { called from the driver procedure in OvrThre, and will call }
- { the interfaced procedure Proc1. It is included as an }
- { example of an overlayd application. }
-
- {$O+,F+} { Instruct compiler this can be overlayed }
-
- Interface
-
- Uses OvrOne;
-
- Procedure OvrTwo1;
-
- Implementation
-
- Procedure OvrTwo1;
- { This procedure will simply make a call to the procedure }
- { interfaced in unit OvrOne. }
-
- Begin
- Proc1; { Call the procedure... }
- End;
-
- End.