home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / bass / Delphi / DspTest / DspTest.dpr next >
Encoding:
Text File  |  2004-11-15  |  462 b   |  20 lines

  1. {
  2. BASS simple DSP test, copyright (c) 2000-2004 Ian Luck.
  3. =======================================================
  4. Other source: DTMain.pas; DTMain.dcu
  5. Delphi version by Titus Miloi (titus.a.m@t-online.de)
  6. }
  7. program DspTest;
  8.  
  9. uses
  10.   Forms,
  11.   DTMain in 'DTMain.pas' {Form1},
  12.   Bass in '..\Bass.pas';
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.Title := 'BASS simple DSP Test';
  17.   Application.CreateForm(TForm1, Form1);
  18.   Application.Run;
  19. end.
  20.