home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / ModBass / Delphi / DspTest / DspTest.dpr < prev    next >
Encoding:
Text File  |  2000-02-19  |  443 b   |  21 lines

  1. {
  2. BASS simple DSP test, copyright (c) 2000 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.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.Title := 'BASS simple DSP Test';
  18.   Application.CreateForm(TForm1, Form1);
  19.   Application.Run;
  20. end.
  21.