Opens or creates a subkey of this registry key. @param p_pKeyName Name of the subkey to open or create. @return Wrapper for the subkey.
| 370 | // @return Wrapper for the subkey. |
| 371 | // |
| 372 | std::shared_ptr<RegKey> UserOverrideableRegKey::CreateSubKey(const wchar_t* const p_pKeyName) |
| 373 | { |
| 374 | return std::make_shared<UserOverrideableRegKey>((m_KeyPath + L"\\" + p_pKeyName).c_str(), |
| 375 | (m_UserKeyPath + L"\\" + p_pKeyName).c_str()); |
| 376 | } |
nothing calls this directly
no outgoing calls
no test coverage detected