home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / bass / Delphi / StreamTest / StreamTest.dpr < prev   
Encoding:
Text File  |  2004-11-14  |  402 b   |  19 lines

  1. {
  2. BASS simple stream test, copyright (c) Titus Miloi.
  3. =====================================================
  4. Other source: STMain.pas; STMain.dfm
  5. }
  6. program StreamTest;
  7.  
  8. uses
  9.   Forms,
  10.   STMain in 'STMain.pas' {Form1},
  11.   Bass in '..\Bass.pas';
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.Title := 'BASS - Stream Demo';
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.Run;
  18. end.
  19.