Tries to load a DWORD value from the registry key. @param p_pValueName Name of value to load. @param p_rValue Where to store value. @return Result code (ERROR_SUCCESS if it worked).
| 111 | // @return Result code (ERROR_SUCCESS if it worked). |
| 112 | // |
| 113 | long AtlRegKey::QueryDWORDValue(const wchar_t* const p_pValueName, |
| 114 | DWORD& p_rValue) const noexcept(false) |
| 115 | { |
| 116 | return m_Key.QueryDWORDValue(p_pValueName, p_rValue); |
| 117 | } |
| 118 | |
| 119 | // |
| 120 | // Tries to load a QWORD value from the registry key. |
no outgoing calls
no test coverage detected