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

  1. {
  2. BASS Simple Test, copyright (c) 1999-2000 Ian Luck.
  3. ======================================================
  4. Other source: BTMain.pas; BTMain.dfm
  5. Delphi version by Titus Miloi (titus.a.m@t-online.de)
  6. }
  7. program BassTest;
  8.  
  9. uses
  10.   Forms,
  11.   BTMain in 'BTMain.pas' {Form1};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.Title := 'BASS - Simple Test';
  18.   Application.CreateForm(TForm1, Form1);
  19.   Application.Run;
  20. end.
  21.