DecoderPlayground.dpr 927 B

1234567891011121314151617181920212223242526272829
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 20157: DecoderPlayground.dpr
  11. {
  12. { Rev 1.0 2003.06.12 1:01:36 PM czhower
  13. { Recheckin
  14. }
  15. program DecoderPlayground;
  16. uses
  17. Forms,
  18. Main in 'Main.pas' {formMain},
  19. IdCoderHeader in '..\..\IdCoderHeader.pas',
  20. DecoderBox in '..\DecoderBox.pas';
  21. {$R *.res}
  22. begin
  23. Application.Initialize;
  24. Application.CreateForm(TformMain, formMain);
  25. Application.Run;
  26. end.