| 91 | } |
| 92 | |
| 93 | _Use_decl_annotations_ |
| 94 | LSTATUS RegistryKey::SetValue(LPCTSTR pszValueName, DWORD dwType, const void* pValue, ULONG nBytes) noexcept { |
| 95 | ATLASSUME(_hKey); |
| 96 | return ::RegSetValueEx(_hKey, pszValueName, 0, dwType, static_cast<const BYTE*>(pValue), nBytes); |
| 97 | } |
| 98 | |
| 99 | _Use_decl_annotations_ |
| 100 | LSTATUS RegistryKey::SetBinaryValue(LPCTSTR pszValueName, const void* pData, ULONG nBytes) noexcept { |
no outgoing calls
no test coverage detected