This source file includes following definitions.
- GetLastHResult
- LoadLocalString
- GetErrorMessage
- SetGoogleUpdateUsage
#include "cloud_print/common/win/cloud_print_utils.h"
#include <windows.h>
#include "base/win/registry.h"
namespace cloud_print {
namespace {
const wchar_t kClientStateKey[] = L"SOFTWARE\\Google\\Update\\ClientState\\";
const wchar_t* kUsageKey = L"dr";
}
HRESULT GetLastHResult() {
DWORD error_code = GetLastError();
return error_code ? HRESULT_FROM_WIN32(error_code) : E_FAIL;
}
base::string16 LoadLocalString(DWORD id) {
static wchar_t dummy = L'\0';
HMODULE module = NULL;
::GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, &dummy, &module);
LPCWSTR buffer = NULL;
int count = ::LoadString(module, id, reinterpret_cast<LPWSTR>(&buffer), 0);
if (!buffer)
return base::string16();
return base::string16(buffer, buffer + count);
}
base::string16 GetErrorMessage(HRESULT hr) {
LPWSTR buffer = NULL;
::FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS |
FORMAT_MESSAGE_ALLOCATE_BUFFER,
0, hr, 0, reinterpret_cast<LPWSTR>(&buffer), 0, NULL);
base::string16 result(buffer);
::LocalFree(buffer);
return result;
}
void SetGoogleUpdateUsage(const base::string16& product_id) {
base::win::RegKey key;
if (key.Create(HKEY_CURRENT_USER,
(kClientStateKey + product_id).c_str(),
KEY_SET_VALUE) != ERROR_SUCCESS ||
key.WriteValue(kUsageKey, L"1") != ERROR_SUCCESS) {
LOG(ERROR) << "Unable to set usage key";
}
}
}