Opens or creates a subkey of this registry key. @param p_pKeyName Name of subkey to open or create. @return Wrapper for the subkey.
| 270 | // @return Wrapper for the subkey. |
| 271 | // |
| 272 | std::shared_ptr<RegKey> AtlRegKey::CreateSubKey(const wchar_t* const p_pKeyName) |
| 273 | { |
| 274 | return std::make_shared<AtlRegKey>(m_Key.m_hKey, p_pKeyName, true); |
| 275 | } |
no outgoing calls
no test coverage detected