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.

31 lines
508 B

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*++
  3. Module Name:
  4. AddKp.h
  5. Abstract:
  6. This Module defines CLicMgrCommandLine class
  7. (CommandLine Processing)
  8. Author:
  9. Arathi Kundapur (v-akunda) 11-Feb-1998
  10. Revision History:
  11. --*/
  12. class CLicMgrCommandLine : public CCommandLineInfo
  13. {
  14. private:
  15. BOOL m_bFirstParam;
  16. public:
  17. CString m_FileName;
  18. CLicMgrCommandLine();
  19. virtual void ParseParam(LPCTSTR pszParam, BOOL bFlag, BOOL bLast);
  20. };