Tries to save a GUID value in the registry key (as a string). @param p_pValueName Name of value to save. @param p_pValue Value to save. @return Result code (ERROR_SUCCESS if it worked).
| 234 | // @return Result code (ERROR_SUCCESS if it worked). |
| 235 | // |
| 236 | long AtlRegKey::SetGUIDValue(const wchar_t* const p_pValueName, |
| 237 | const GUID& p_Value) noexcept(false) |
| 238 | { |
| 239 | return m_Key.SetGUIDValue(p_pValueName, p_Value); |
| 240 | } |
| 241 | |
| 242 | // |
| 243 | // Tries to save a string value in the registry key. |
nothing calls this directly
no outgoing calls
no test coverage detected