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
f6170beb
Commit
f6170beb
authored
Jul 17, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Implement MsiConfigureFeatureA using MsiConfigureFeatureW.
parent
741b47fd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
msi.c
dlls/msi/msi.c
+20
-2
No files found.
dlls/msi/msi.c
View file @
f6170beb
...
@@ -1779,8 +1779,26 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
...
@@ -1779,8 +1779,26 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
*/
*/
UINT
WINAPI
MsiConfigureFeatureA
(
LPCSTR
szProduct
,
LPCSTR
szFeature
,
INSTALLSTATE
eInstallState
)
UINT
WINAPI
MsiConfigureFeatureA
(
LPCSTR
szProduct
,
LPCSTR
szFeature
,
INSTALLSTATE
eInstallState
)
{
{
FIXME
(
"%s %s %i
\n
"
,
debugstr_a
(
szProduct
),
debugstr_a
(
szFeature
),
eInstallState
);
LPWSTR
prod
,
feat
=
NULL
;
return
ERROR_SUCCESS
;
UINT
r
=
ERROR_OUTOFMEMORY
;
TRACE
(
"%s %s %i
\n
"
,
debugstr_a
(
szProduct
),
debugstr_a
(
szFeature
),
eInstallState
);
prod
=
strdupAtoW
(
szProduct
);
if
(
szProduct
&&
!
prod
)
goto
end
;
feat
=
strdupAtoW
(
szFeature
);
if
(
szFeature
&&
!
feat
)
goto
end
;
r
=
MsiConfigureFeatureW
(
prod
,
feat
,
eInstallState
);
end:
msi_free
(
feat
);
msi_free
(
prod
);
return
r
;
}
}
/***********************************************************************
/***********************************************************************
...
...
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