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.

25 lines
515 B

  1. #ifndef __MYCMD_H__
  2. #define __MYCMD_H__
  3. #include "cmd.h"
  4. class CMyCmd : public CCmd {
  5. public:
  6. CMyCmd();
  7. ~CMyCmd();
  8. virtual BOOL ProcessToken(LPTSTR lpszToken);
  9. BOOL GetParam(INT i,LPCTSTR& Locale, LPCTSTR& FileName);
  10. INT GetSize() {return (INT)m_LocaleList.GetSize();}
  11. BOOL Do();
  12. void Help();
  13. private:
  14. CStringArray m_LocaleList;
  15. CStringArray m_FileNameList;
  16. CString m_TargetFile;
  17. CString m_SourceFile;
  18. CString m_SourceLocale;
  19. };
  20. #endif
  21.