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

// common methods between the old w3key and the new mdkey
//-------------------------------------------------------------
// This is the key object
class CCmnKey : public CKey
{
public:
CCmnKey();
// manage the name
void SetName( CString &szNewName );
CString GetName();
// brings up the key properties dialog
void OnUpdateProperties(CCmdUI* pCmdUI);
// basic info about the key
CString m_szName; // friendly name
};