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
27 lines
770 B
/********************************************************************
|
|
* 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
|
|
}
|
|
}
|