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
39d444fb
Commit
39d444fb
authored
May 15, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
May 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
appwiz.cpl: Moved addon SHA and version to addon_info_t.
parent
3e5c4551
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
addons.c
dlls/appwiz.cpl/addons.c
+8
-4
No files found.
dlls/appwiz.cpl/addons.c
View file @
39d444fb
...
...
@@ -65,12 +65,16 @@ WINE_DEFAULT_DEBUG_CHANNEL(appwizcpl);
#endif
typedef
struct
{
const
char
*
version
;
const
char
*
file_name
;
const
char
*
sha
;
}
addon_info_t
;
static
const
addon_info_t
addons_info
[]
=
{
{
"wine_gecko-"
GECKO_VERSION
"-"
ARCH_STRING
".msi"
GECKO_VERSION
,
"wine_gecko-"
GECKO_VERSION
"-"
ARCH_STRING
".msi"
,
GECKO_SHA
}
};
...
...
@@ -131,10 +135,10 @@ static BOOL sha_check(const WCHAR *file_name)
for
(
i
=
0
;
i
<
sizeof
(
sha
);
i
++
)
sprintf
(
buf
+
i
*
2
,
"%02x"
,
*
((
unsigned
char
*
)
sha
+
i
));
if
(
strcmp
(
buf
,
GECKO_SHA
))
{
if
(
strcmp
(
buf
,
addon
->
sha
))
{
WCHAR
message
[
256
];
WARN
(
"Got %s, expected %s
\n
"
,
buf
,
GECKO_SHA
);
WARN
(
"Got %s, expected %s
\n
"
,
buf
,
addon
->
sha
);
if
(
LoadStringW
(
hInst
,
IDS_INVALID_SHA
,
message
,
sizeof
(
message
)
/
sizeof
(
WCHAR
)))
MessageBoxW
(
NULL
,
message
,
NULL
,
MB_ICONERROR
);
...
...
@@ -426,7 +430,7 @@ static LPWSTR get_url(void)
len
+=
MultiByteToWideChar
(
CP_ACP
,
0
,
ARCH_STRING
,
sizeof
(
ARCH_STRING
),
url
+
len
,
size
/
sizeof
(
WCHAR
)
-
len
)
-
1
;
memcpy
(
url
+
len
,
v_formatW
,
sizeof
(
v_formatW
));
len
+=
sizeof
(
v_formatW
)
/
sizeof
(
WCHAR
);
MultiByteToWideChar
(
CP_ACP
,
0
,
GECKO_VERSION
,
-
1
,
url
+
len
,
size
/
sizeof
(
WCHAR
)
-
len
);
MultiByteToWideChar
(
CP_ACP
,
0
,
addon
->
version
,
-
1
,
url
+
len
,
size
/
sizeof
(
WCHAR
)
-
len
);
}
TRACE
(
"Got URL %s
\n
"
,
debugstr_w
(
url
));
...
...
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