mirror of https://github.com/tongzx/nt5src
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
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
|
|
};
|