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
efb8d0b4
Commit
efb8d0b4
authored
Aug 07, 2017
by
Hugh McMaster
Committed by
Alexandre Julliard
Aug 08, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit: Allow editing of all hex data types.
Signed-off-by:
Hugh McMaster
<
hugh.mcmaster@outlook.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8abec735
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
edit.c
programs/regedit/edit.c
+11
-10
No files found.
programs/regedit/edit.c
View file @
efb8d0b4
...
...
@@ -303,14 +303,6 @@ BOOL ModifyValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR valueName)
}
heap_free
(
valueA
);
}
}
else
if
(
type
==
REG_BINARY
)
{
struct
edit_params
params
;
params
.
hKey
=
hKey
;
params
.
lpszValueName
=
valueName
;
params
.
pData
=
stringValueData
;
params
.
cbData
=
len
;
result
=
DialogBoxParamW
(
NULL
,
MAKEINTRESOURCEW
(
IDD_EDIT_BINARY
),
hwnd
,
bin_modify_dlgproc
,
(
LPARAM
)
&
params
);
}
else
if
(
type
==
REG_MULTI_SZ
)
{
WCHAR
char1
=
'\r'
,
char2
=
'\n'
;
WCHAR
*
tmpValueData
=
NULL
;
...
...
@@ -362,8 +354,17 @@ BOOL ModifyValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR valueName)
if
(
lRet
==
ERROR_SUCCESS
)
result
=
TRUE
;
else
error_code_messagebox
(
hwnd
,
IDS_SET_VALUE_FAILED
);
}
}
else
{
error_code_messagebox
(
hwnd
,
IDS_UNSUPPORTED_TYPE
,
type
);
}
else
/* hex data types */
{
struct
edit_params
params
;
params
.
hKey
=
hKey
;
params
.
lpszValueName
=
valueName
;
params
.
pData
=
stringValueData
;
params
.
cbData
=
len
;
result
=
DialogBoxParamW
(
NULL
,
MAKEINTRESOURCEW
(
IDD_EDIT_BINARY
),
hwnd
,
bin_modify_dlgproc
,
(
LPARAM
)
&
params
);
}
/* Update the listview item with the new data string */
...
...
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