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
485484de
Commit
485484de
authored
Aug 15, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Aug 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub for MsiGetFeatureCost.
parent
d4a27358
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
2 deletions
+34
-2
install.c
dlls/msi/install.c
+24
-0
msi.spec
dlls/msi/msi.spec
+2
-2
msiquery.h
include/msiquery.h
+8
-0
No files found.
dlls/msi/install.c
View file @
485484de
...
...
@@ -634,6 +634,30 @@ UINT WINAPI MsiGetFeatureStateW(MSIHANDLE hInstall, LPCWSTR szFeature,
}
/***********************************************************************
* MsiGetFeatureCostA (MSI.@)
*/
UINT
WINAPI
MsiGetFeatureCostA
(
MSIHANDLE
hInstall
,
LPCSTR
szFeature
,
MSICOSTTREE
iCostTree
,
INSTALLSTATE
iState
,
INT
*
piCost
)
{
FIXME
(
"(%ld %s %i %i %p): stub
\n
"
,
hInstall
,
debugstr_a
(
szFeature
),
iCostTree
,
iState
,
piCost
);
if
(
piCost
)
*
piCost
=
0
;
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiGetFeatureCostW (MSI.@)
*/
UINT
WINAPI
MsiGetFeatureCostW
(
MSIHANDLE
hInstall
,
LPCWSTR
szFeature
,
MSICOSTTREE
iCostTree
,
INSTALLSTATE
iState
,
INT
*
piCost
)
{
FIXME
(
"(%ld %s %i %i %p): stub
\n
"
,
hInstall
,
debugstr_w
(
szFeature
),
iCostTree
,
iState
,
piCost
);
if
(
piCost
)
*
piCost
=
0
;
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiSetComponentStateA (MSI.@)
*/
UINT
WINAPI
MsiSetComponentStateA
(
MSIHANDLE
hInstall
,
LPCSTR
szComponent
,
...
...
dlls/msi/msi.spec
View file @
485484de
...
...
@@ -46,8 +46,8 @@
50 stdcall MsiGetComponentStateA(long str ptr ptr)
51 stdcall MsiGetComponentStateW(long wstr ptr ptr)
52 stdcall MsiGetDatabaseState(long)
53 st
ub MsiGetFeatureCostA
54 st
ub MsiGetFeatureCostW
53 st
dcall MsiGetFeatureCostA(long str long long ptr)
54 st
dcall MsiGetFeatureCostW(long wstr long long ptr)
55 stub MsiGetFeatureInfoA
56 stub MsiGetFeatureInfoW
57 stdcall MsiGetFeatureStateA(long str ptr ptr)
...
...
include/msiquery.h
View file @
485484de
...
...
@@ -37,6 +37,14 @@ typedef enum tagMSICOLINFO
MSICOLINFO_TYPES
=
1
}
MSICOLINFO
;
typedef
enum
tagMSICOSTTREE
{
MSICOSTTREE_SELFONLY
=
0
,
MSICOSTTREE_CHILDREN
=
1
,
MSICOSTTREE_PARENTS
=
2
,
MSICOSTTREE_PRODUCT
=
3
,
}
MSICOSTTREE
;
typedef
enum
tagMSIMODIFY
{
MSIMODIFY_REFRESH
=
0
,
...
...
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