Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
770 B

  1. /********************************************************************
  2. * Project : C:\DEPOT\multimedia\eHomeTest\UserXp\MediaManager\MediaManager.sln
  3. * File : MediaManager.cs
  4. * Summary : Entry point for a series of media player management tools
  5. * Classes :
  6. * Notes :
  7. * *****************************************************************/
  8. using System;
  9. namespace MediaManager
  10. {
  11. class MediaManagerApp
  12. {
  13. [STAThread]
  14. static void Main(string[] args)
  15. {
  16. ProgramArgs prgargs = new ProgramArgs();
  17. LenCheck lc;
  18. if ( false == prgargs.CommandLine(args) ) return;
  19. lc = new LenCheck(prgargs.attribute, prgargs.maxLen, prgargs.outputFile, prgargs.append);
  20. } // Main
  21. }
  22. }