Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4a70d335
Commit
4a70d335
authored
Jun 21, 2017
by
Hugh McMaster
Committed by
Alexandre Julliard
Jun 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit: Display data for all values in the GUI.
Signed-off-by:
Hugh McMaster
<
hugh.mcmaster@outlook.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
878a0a4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
listview.c
programs/regedit/listview.c
+5
-11
No files found.
programs/regedit/listview.c
View file @
4a70d335
...
...
@@ -129,8 +129,13 @@ void format_value_data(HWND hwndLV, int index, DWORD type, void *data, DWORD siz
ListView_SetItemTextW
(
hwndLV
,
index
,
2
,
buf
);
break
;
}
case
REG_MULTI_SZ
:
MakeMULTISZDisplayable
(
data
);
ListView_SetItemTextW
(
hwndLV
,
index
,
2
,
data
);
break
;
case
REG_BINARY
:
case
REG_NONE
:
default:
{
unsigned
int
i
;
BYTE
*
pData
=
data
;
...
...
@@ -143,17 +148,6 @@ void format_value_data(HWND hwndLV, int index, DWORD type, void *data, DWORD siz
HeapFree
(
GetProcessHeap
(),
0
,
strBinary
);
break
;
}
case
REG_MULTI_SZ
:
MakeMULTISZDisplayable
(
data
);
ListView_SetItemTextW
(
hwndLV
,
index
,
2
,
data
);
break
;
default:
{
WCHAR
szText
[
128
];
LoadStringW
(
hInst
,
IDS_REGISTRY_VALUE_CANT_DISPLAY
,
szText
,
COUNT_OF
(
szText
));
ListView_SetItemTextW
(
hwndLV
,
index
,
2
,
szText
);
break
;
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment