home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / PROG / BWSB120B.ZIP / TTP / PCXDATA.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-12-20  |  352 b   |  26 lines

  1. Unit PCXData;
  2. { The Linked PCX cockpit data file }
  3.  
  4. Interface
  5.  
  6. Var
  7.   CockPitAddr : Pointer;
  8.   TitleAddr : Pointer;
  9.  
  10. Procedure Cockpit;
  11.  
  12. Implementation
  13.  
  14. {$F+}
  15. {$L Pit.OBJ}
  16. Procedure CockPit; External;
  17.  
  18. {$L Title.OBJ}
  19. Procedure TitlePCX; External;
  20. {$F-}
  21.  
  22.  
  23. Begin
  24.   CockPitAddr := Addr(CockPit);
  25.   TitleAddr := Addr(TitlePCX);
  26. End.