home *** CD-ROM | disk | FTP | other *** search
- Unit A;
- { This unit is another in the example to determine the order }
- { of units within an OVR file. It interfaces a single }
- { procedure that is called from unit three. This procedure, }
- { like the others, should NEVER BE CALLED. }
-
- {$O+,F+}
-
- Interface
-
- Procedure A1;
-
- Implementation
-
- Procedure A1;
- { This procedure MUST NEVER BE CALLED. It is simply here to }
- { determine the order of the units within the OVR file }
- { produced when this unit is compiled as part of another }
- { program. }
- Begin
- INline( $90/$41/$90 );
- End;
-
- End.
-