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

  1. #include "stdafx.h"
  2. #include "infcat.h"
  3. #include "mycmd.h"
  4. __cdecl main(int argc, char* argv[])
  5. {
  6. int nRetCode = 0;
  7. CMyCmd MyCmd;
  8. if (MyCmd.bInit(argc,argv)) {
  9. MyCmd.Do();
  10. } else {
  11. MyCmd.Help();
  12. }
  13. return nRetCode;
  14. }