MMDEMO32.DPR 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {========================================================================}
  2. {= (c) 1995-98 SwiftSoft Ronald Dittrich =}
  3. {========================================================================}
  4. {= All Rights Reserved =}
  5. {========================================================================}
  6. {= D 01099 Dresden = Fax.: +49 (0)351-8037944 =}
  7. {= Loewenstr.7a = info@swiftsoft.de =}
  8. {========================================================================}
  9. {= Actual versions on http://www.swiftsoft.de/mmtools.html =}
  10. {========================================================================}
  11. {= This code is for reference purposes only and may not be copied or =}
  12. {= distributed in any format electronic or otherwise except one copy =}
  13. {= for backup purposes. =}
  14. {= =}
  15. {= No Delphi Component Kit or Component individually or in a collection=}
  16. {= subclassed or otherwise from the code in this unit, or associated =}
  17. {= .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed =}
  18. {= without express permission from SwiftSoft. =}
  19. {= =}
  20. {= For more licence informations please refer to the associated =}
  21. {= HelpFile. =}
  22. {========================================================================}
  23. {= $Date: 05.09.98 - 21:49:15 $ =}
  24. {========================================================================}
  25. program MMdemo32;
  26. uses
  27. Forms,
  28. CDMain in 'CDMain.pas' {CDMainForm},
  29. CDCopy in 'CDCopy.pas' {CopyDlg},
  30. CDConfig in 'CDConfig.pas' {ConfigDlg},
  31. CDISRC in 'CDISRC.pas' {CDISRCDlg};
  32. {$R *.RES}
  33. begin
  34. Application.Initialize;
  35. Application.CreateForm(TCDMainForm, CDMainForm);
  36. Application.Title := 'Digital Audio Copy';
  37. Application.Run;
  38. end.