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
254e27ad
Commit
254e27ad
authored
Jul 03, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Jul 04, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Handle remote calls to MsiGetComponentState.
parent
7d93e1a2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
1 deletion
+32
-1
install.c
dlls/msi/install.c
+22
-1
msiserver.idl
dlls/msi/msiserver.idl
+1
-0
package.c
dlls/msi/package.c
+9
-0
No files found.
dlls/msi/install.c
View file @
254e27ad
...
@@ -984,7 +984,28 @@ UINT WINAPI MsiGetComponentStateW(MSIHANDLE hInstall, LPCWSTR szComponent,
...
@@ -984,7 +984,28 @@ UINT WINAPI MsiGetComponentStateW(MSIHANDLE hInstall, LPCWSTR szComponent,
package
=
msihandle2msiinfo
(
hInstall
,
MSIHANDLETYPE_PACKAGE
);
package
=
msihandle2msiinfo
(
hInstall
,
MSIHANDLETYPE_PACKAGE
);
if
(
!
package
)
if
(
!
package
)
return
ERROR_INVALID_HANDLE
;
{
HRESULT
hr
;
IWineMsiRemotePackage
*
remote_package
;
remote_package
=
(
IWineMsiRemotePackage
*
)
msi_get_remote
(
hInstall
);
if
(
!
remote_package
)
return
ERROR_INVALID_HANDLE
;
hr
=
IWineMsiRemotePackage_GetComponentState
(
remote_package
,
(
BSTR
*
)
szComponent
,
piInstalled
,
piAction
);
if
(
FAILED
(
hr
))
{
if
(
HRESULT_FACILITY
(
hr
)
==
FACILITY_WIN32
)
return
HRESULT_CODE
(
hr
);
return
ERROR_FUNCTION_FAILED
;
}
return
ERROR_SUCCESS
;
}
ret
=
MSI_GetComponentStateW
(
package
,
szComponent
,
piInstalled
,
piAction
);
ret
=
MSI_GetComponentStateW
(
package
,
szComponent
,
piInstalled
,
piAction
);
msiobj_release
(
&
package
->
hdr
);
msiobj_release
(
&
package
->
hdr
);
return
ret
;
return
ret
;
...
...
dlls/msi/msiserver.idl
View file @
254e27ad
...
@@ -50,6 +50,7 @@ interface IWineMsiRemotePackage : IUnknown
...
@@ -50,6 +50,7 @@ interface IWineMsiRemotePackage : IUnknown
HRESULT
GetMode
(
[
in
]
MSIRUNMODE
mode
,
[
out
]
BOOL
*
ret
)
;
HRESULT
GetMode
(
[
in
]
MSIRUNMODE
mode
,
[
out
]
BOOL
*
ret
)
;
HRESULT
GetFeatureState
(
[
in
]
BSTR
*
feature
,
[
out
]
INSTALLSTATE
*
installed
,
[
out
]
INSTALLSTATE
*
action
)
;
HRESULT
GetFeatureState
(
[
in
]
BSTR
*
feature
,
[
out
]
INSTALLSTATE
*
installed
,
[
out
]
INSTALLSTATE
*
action
)
;
HRESULT
SetFeatureState
(
[
in
]
BSTR
*
feature
,
[
in
]
INSTALLSTATE
state
)
;
HRESULT
SetFeatureState
(
[
in
]
BSTR
*
feature
,
[
in
]
INSTALLSTATE
state
)
;
HRESULT
GetComponentState
(
[
in
]
BSTR
*
component
,
[
out
]
INSTALLSTATE
*
installed
,
[
out
]
INSTALLSTATE
*
action
)
;
}
}
[
[
...
...
dlls/msi/package.c
View file @
254e27ad
...
@@ -1633,6 +1633,14 @@ HRESULT WINAPI mrp_SetFeatureState( IWineMsiRemotePackage *iface, BSTR *feature,
...
@@ -1633,6 +1633,14 @@ HRESULT WINAPI mrp_SetFeatureState( IWineMsiRemotePackage *iface, BSTR *feature,
return
HRESULT_FROM_WIN32
(
r
);
return
HRESULT_FROM_WIN32
(
r
);
}
}
HRESULT
WINAPI
mrp_GetComponentState
(
IWineMsiRemotePackage
*
iface
,
BSTR
*
component
,
INSTALLSTATE
*
installed
,
INSTALLSTATE
*
action
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiGetComponentStateW
(
This
->
package
,
(
LPWSTR
)
component
,
installed
,
action
);
return
HRESULT_FROM_WIN32
(
r
);
}
static
const
IWineMsiRemotePackageVtbl
msi_remote_package_vtbl
=
static
const
IWineMsiRemotePackageVtbl
msi_remote_package_vtbl
=
{
{
mrp_QueryInterface
,
mrp_QueryInterface
,
...
@@ -1651,6 +1659,7 @@ static const IWineMsiRemotePackageVtbl msi_remote_package_vtbl =
...
@@ -1651,6 +1659,7 @@ static const IWineMsiRemotePackageVtbl msi_remote_package_vtbl =
mrp_GetMode
,
mrp_GetMode
,
mrp_GetFeatureState
,
mrp_GetFeatureState
,
mrp_SetFeatureState
,
mrp_SetFeatureState
,
mrp_GetComponentState
,
};
};
HRESULT
create_msi_remote_package
(
IUnknown
*
pOuter
,
LPVOID
*
ppObj
)
HRESULT
create_msi_remote_package
(
IUnknown
*
pOuter
,
LPVOID
*
ppObj
)
...
...
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