Tries to load a GUID value from the registry key (stored as a string). @param p_pValueName Name of value to load. @param p_rValue Where to store value. @return Result code (ERROR_SUCCESS if it worked).
| 137 | // @return Result code (ERROR_SUCCESS if it worked). |
| 138 | // |
| 139 | long AtlRegKey::QueryGUIDValue(const wchar_t* const p_pValueName, |
| 140 | GUID& p_rValue) const noexcept(false) |
| 141 | { |
| 142 | return m_Key.QueryGUIDValue(p_pValueName, p_rValue); |
| 143 | } |
| 144 | |
| 145 | // |
| 146 | // Tries to load a value from the registry key. |
nothing calls this directly
no outgoing calls
no test coverage detected