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.
|
|
/******************************************************************** * Project : C:\DEPOT\multimedia\eHomeTest\UserXp\MediaManager\MediaManager.sln * File : MediaManager.cs * Summary : Entry point for a series of media player management tools * Classes : * Notes : * *****************************************************************/
using System;
namespace MediaManager {
class MediaManagerApp { [STAThread] static void Main(string[] args) { ProgramArgs prgargs = new ProgramArgs(); LenCheck lc;
if ( false == prgargs.CommandLine(args) ) return; lc = new LenCheck(prgargs.attribute, prgargs.maxLen, prgargs.outputFile, prgargs.append); } // Main
} }
|