home *** CD-ROM | disk | FTP | other *** search
- Unit Three;
- { This is the third unit in this test program. Like the }
- { units preceding this, its sole purpose is to determine the }
- { order of units within an OVR file. The routines in this }
- { unit must never be executed, as unpredictable results will }
- { occur. }
-
- {$O+,F+}
-
- Interface
-
- Uses
- One, A;
-
- Procedure Three1;
-
- Implementation
-
- Procedure Three1;
- { This procedure is an example used to determine the order of }
- { units within an OVR file. This routine MUST NEVER BE }
- { EXECUTED, as it could lock the machine. It establishes a }
- { dependancy on unit A. }
- Begin
- Inline( $90/$03/$90 );
- A1;
- End;
-
- End.