regedit: Display REG_NONE values.
REG_NONE values are displayed in hexadecimal. Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
32714ee447
commit
5b3681f62d
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue