home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / DELPHI / WAVESHOW / WAVSHOW.DPR < prev    next >
Text File  |  1995-04-27  |  523b  |  19 lines

  1. program Wavshow;
  2. { ------------------------------------------------------------------}
  3. { WavShow - A Simple 8-bit .WAV file displayer in Borland's Delphi. }
  4. { Written by Pete Cervasio on April 8, 1995.                        }
  5. { Released to the public domain.                                    }
  6. { ------------------------------------------------------------------}
  7.  
  8. uses
  9.   Forms,
  10.   Waveshow in 'WAVESHOW.PAS' {Form1};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.Run;
  17. end.
  18.  
  19.