* @brief Opens registry key from HKEY_LOCAL_MACHINE for reading. * @param [in] key Path to actual registry key to access. * @return true on success, false otherwise. */
| 92 | * @return true on success, false otherwise. |
| 93 | */ |
| 94 | bool CRegKeyEx::QueryRegMachine(const tchar_t* key) |
| 95 | { |
| 96 | return OpenNoCreateWithAccess(HKEY_LOCAL_MACHINE, key, KEY_QUERY_VALUE) == ERROR_SUCCESS; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * @brief Opens registry key from HKEY_CURRENT_USER for reading. |
no outgoing calls
no test coverage detected