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
723abff8
Commit
723abff8
authored
Nov 07, 2006
by
Stefan Leichter
Committed by
Alexandre Julliard
Nov 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Added stub for MsiGetFeatureValidStatesA/W.
parent
7486f47b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
2 deletions
+31
-2
install.c
dlls/msi/install.c
+29
-0
msi.spec
dlls/msi/msi.spec
+2
-2
No files found.
dlls/msi/install.c
View file @
723abff8
...
...
@@ -827,3 +827,32 @@ UINT WINAPI MsiSetInstallLevel(MSIHANDLE hInstall, int iInstallLevel)
return
r
;
}
/***********************************************************************
* MsiGetFeatureValidStatesW (MSI.@)
*/
UINT
WINAPI
MsiGetFeatureValidStatesW
(
MSIHANDLE
hInstall
,
LPCWSTR
szFeature
,
DWORD
*
pInstallState
)
{
if
(
pInstallState
)
*
pInstallState
=
1
<<
INSTALLSTATE_LOCAL
;
FIXME
(
"%ld %s %p stub returning %d
\n
"
,
hInstall
,
debugstr_w
(
szFeature
),
pInstallState
,
pInstallState
?
*
pInstallState
:
0
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiGetFeatureValidStatesA (MSI.@)
*/
UINT
WINAPI
MsiGetFeatureValidStatesA
(
MSIHANDLE
hInstall
,
LPCSTR
szFeature
,
DWORD
*
pInstallState
)
{
UINT
ret
;
LPWSTR
szwFeature
=
strdupAtoW
(
szFeature
);
ret
=
MsiGetFeatureValidStatesW
(
hInstall
,
szwFeature
,
pInstallState
);
msi_free
(
szwFeature
);
return
ret
;
}
dlls/msi/msi.spec
View file @
723abff8
...
...
@@ -54,8 +54,8 @@
58 stdcall MsiGetFeatureStateW(long wstr ptr ptr)
59 stdcall MsiGetFeatureUsageA(str str ptr ptr)
60 stdcall MsiGetFeatureUsageW(wstr wstr ptr ptr)
61 st
ub MsiGetFeatureValidStatesA
62 st
ub MsiGetFeatureValidStatesW
61 st
dcall MsiGetFeatureValidStatesA(long str ptr)
62 st
dcall MsiGetFeatureValidStatesW(long wstr ptr)
63 stdcall MsiGetLanguage(long)
64 stdcall MsiGetMode(long long)
65 stdcall MsiGetProductCodeA(str str)
...
...
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