home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a006 / 1.ddi / PASEXAM.ZIP / LOADOVL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-03-11  |  227 b   |  12 lines

  1. program LoadOvl;
  2. uses PXEngine;
  3.  
  4. (* Modify your OverlayName to be the location of the PXENGINE.OVL *)
  5. const OverlayName = 'C:\PXENGINE.OVL';
  6.  
  7. begin
  8.   PX(PXLoadOverlay(OverlayName));
  9.   PX(PXInit);
  10.   PX(PXExit);
  11. end.
  12.