home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue40 / Threads / ThreadsDemoP.dpr < prev    next >
Encoding:
Text File  |  1998-10-26  |  429 b   |  19 lines

  1. program ThreadsDemoP;
  2.  
  3. uses
  4.   Forms,
  5.   ThreadsDemo in 'ThreadsDemo.pas' {SoundDemoForm},
  6.   HVSignalList in 'HVSignalList.pas',
  7.   HVMultiThreadMain in 'HVMultiThreadMain.pas',
  8.   HVSyncObjs in 'HVSyncObjs.pas',
  9.   HVBackgroudThread in 'HVBackgroudThread.pas',
  10.   HVUtils in 'HVUtils.pas';
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TSoundDemoForm, SoundDemoForm);
  17.   Application.Run;
  18. end.
  19.