home *** CD-ROM | disk | FTP | other *** search
- Unit Two;
- { Second unit in example program. This unit will make a }
- { "call" to the procedure in unit one. This establishes a }
- { dependancy by unit two upon unit one. }
-
- {$O+,F+}
-
- Interface
-
- Procedure Two1;
-
- Implementation
-
- Procedure Two1;
- { This routine MUST NEVER BE EXECUTED! It is a useless }
- { procedure, whose only purpose is to determine the order of }
- { units within an OVR file. }
-
- Begin
- Inline( $90/$02/$90 );
- End;
-
- End.