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
c3030532
Commit
c3030532
authored
Nov 16, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Forward MsiInstallMissingComponentA to MsiInstallMissingComponentW.
parent
6d13e2fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletion
+26
-1
msi.c
dlls/msi/msi.c
+25
-0
msi.spec
dlls/msi/msi.spec
+1
-1
No files found.
dlls/msi/msi.c
View file @
c3030532
...
...
@@ -3770,6 +3770,31 @@ UINT WINAPI MsiSetExternalUIRecord( INSTALLUI_HANDLER_RECORD handler,
}
/***********************************************************************
* MsiInstallMissingComponentA [MSI.@]
*/
UINT
WINAPI
MsiInstallMissingComponentA
(
LPCSTR
product
,
LPCSTR
component
,
INSTALLSTATE
state
)
{
UINT
r
;
WCHAR
*
productW
=
NULL
,
*
componentW
=
NULL
;
TRACE
(
"%s, %s, %d
\n
"
,
debugstr_a
(
product
),
debugstr_a
(
component
),
state
);
if
(
product
&&
!
(
productW
=
strdupAtoW
(
product
)))
return
ERROR_OUTOFMEMORY
;
if
(
component
&&
!
(
componentW
=
strdupAtoW
(
component
)))
{
msi_free
(
productW
);
return
ERROR_OUTOFMEMORY
;
}
r
=
MsiInstallMissingComponentW
(
productW
,
componentW
,
state
);
msi_free
(
productW
);
msi_free
(
componentW
);
return
r
;
}
/***********************************************************************
* MsiInstallMissingComponentW [MSI.@]
*/
UINT
WINAPI
MsiInstallMissingComponentW
(
LPCWSTR
szProduct
,
LPCWSTR
szComponent
,
INSTALLSTATE
eInstallState
)
...
...
dlls/msi/msi.spec
View file @
c3030532
...
...
@@ -76,7 +76,7 @@
80 stdcall MsiGetTargetPathW(long wstr ptr ptr)
81 stdcall MsiGetUserInfoA(str ptr ptr ptr ptr ptr ptr)
82 stdcall MsiGetUserInfoW(wstr ptr ptr ptr ptr ptr ptr)
83 st
ub MsiInstallMissingComponentA
83 st
dcall MsiInstallMissingComponentA(str str long)
84 stdcall MsiInstallMissingComponentW(wstr wstr long)
85 stub MsiInstallMissingFileA
86 stub MsiInstallMissingFileW
...
...
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