Commit 5b3681f6 authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

regedit: Display REG_NONE values.

REG_NONE values are displayed in hexadecimal. Signed-off-by: 's avatarHugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 32714ee4
......@@ -179,7 +179,8 @@ static void AddEntryToList(HWND hwndLV, LPWSTR Name, DWORD dwValType,
ListView_SetItemTextW(hwndLV, index, 2, buf);
}
break;
case REG_BINARY: {
case REG_BINARY:
case REG_NONE: {
unsigned int i;
LPBYTE pData = ValBuf;
LPWSTR strBinary = HeapAlloc(GetProcessHeap(), 0, dwCount * sizeof(WCHAR) * 3 + sizeof(WCHAR));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment