home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Pascal / Snippets / PNL Libraries / MyTransportSystem.p < prev    next >
Encoding:
Text File  |  1996-08-02  |  166 b   |  17 lines  |  [TEXT/CWIE]

  1. unit MyTransportSystem;
  2.  
  3. interface
  4.  
  5.     procedure StartupTransportSystem;
  6.     
  7. implementation
  8.  
  9.     uses
  10.         MyStartup;
  11.         
  12.     procedure StartupTransportSystem;
  13.     begin
  14.     end;
  15.     
  16. end.
  17.