mirror of https://github.com/tongzx/nt5src
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.
21 lines
263 B
21 lines
263 B
#include "stdafx.h"
|
|
#include "infcat.h"
|
|
#include "mycmd.h"
|
|
|
|
__cdecl main(int argc, char* argv[])
|
|
{
|
|
int nRetCode = 0;
|
|
|
|
CMyCmd MyCmd;
|
|
|
|
if (MyCmd.bInit(argc,argv)) {
|
|
MyCmd.Do();
|
|
} else {
|
|
MyCmd.Help();
|
|
}
|
|
|
|
|
|
return nRetCode;
|
|
}
|
|
|
|
|