Source code of Windows XP (NT5)
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

#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;
}