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.

19 lines
433 B

  1. // common methods between the old w3key and the new mdkey
  2. //-------------------------------------------------------------
  3. // This is the key object
  4. class CCmnKey : public CKey
  5. {
  6. public:
  7. CCmnKey();
  8. // manage the name
  9. void SetName( CString &szNewName );
  10. CString GetName();
  11. // brings up the key properties dialog
  12. void OnUpdateProperties(CCmdUI* pCmdUI);
  13. // basic info about the key
  14. CString m_szName; // friendly name
  15. };