home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / ModBass / Delphi / StreamTest / StreamTest.dpr < prev   
Encoding:
Text File  |  2000-02-19  |  390 b   |  20 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.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.Title := 'BASS - Stream Demo';
  17.   Application.CreateForm(TForm1, Form1);
  18.   Application.Run;
  19. end.
  20.