Parametrized constructor. @param p_hKey Handle of key containing the registry value. @param p_pValueName Name of value.
| 30 | // @param p_pValueName Name of value. |
| 31 | // |
| 32 | RegKey::ValueInfo::ValueInfo(HKEY const p_hKey, |
| 33 | const wchar_t* const p_pValueName) |
| 34 | : m_hKey(p_hKey), |
| 35 | m_ValueName(p_pValueName) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | // |
| 40 | // Parametrized constructor. |
nothing calls this directly
no outgoing calls
no test coverage detected