home *** CD-ROM | disk | FTP | other *** search
/ Multi-CD Magazin 1993 January / MultiCDMagazin0193_2ndEd.bin / cdplayer / cdapp.pas < prev    next >
Pascal/Delphi Source File  |  1993-08-01  |  335b  |  22 lines

  1. UNIT CDAPP;
  2.  
  3. INTERFACE
  4.  
  5. USES OWINDOWS,CDDIALOG;
  6.  
  7.  
  8. Type     CDApplication = Object (TApplication)
  9.                            Procedure InitMainWindow; VIRTUAL;
  10.                          End;
  11.  
  12. IMPLEMENTATION
  13.  
  14. Procedure CDApplication.InitMainWindow;
  15. Begin;
  16.   MainWindow:=New(PDlgCD,Init(NIL,'CDPLAYER'));
  17. End;
  18.  
  19.  
  20.  
  21. END.
  22.