Commit fe11241c authored by Johan Dahlin's avatar Johan Dahlin Committed by Alexandre Julliard

Added stubs for MsiSetComponentStateA and MsiSetComponentStateW.

parent febad089
......@@ -524,6 +524,16 @@ piAction);
}
/***********************************************************************
* MsiSetComponentStateA (MSI.@)
*/
UINT WINAPI MsiSetComponentStateA(MSIHANDLE hInstall, LPCSTR szComponent,
INSTALLSTATE iState)
{
FIXME("STUB (szComponent=%s,iState=%i)\n",debugstr_a(szComponent),iState);
return ERROR_SUCCESS;
}
/***********************************************************************
* MsiGetComponentStateA (MSI.@)
*/
UINT WINAPI MsiGetComponentStateA(MSIHANDLE hInstall, LPSTR szComponent,
......@@ -565,6 +575,16 @@ UINT MSI_GetComponentStateW(MSIPACKAGE *package, LPWSTR szComponent,
}
/***********************************************************************
* MsiSetComponentStateW (MSI.@)
*/
UINT WINAPI MsiSetComponentStateW(MSIHANDLE hInstall, LPCWSTR szComponent,
INSTALLSTATE iState)
{
FIXME("STUB (szComponent=%s,iState=%i)\n",debugstr_w(szComponent),iState);
return ERROR_SUCCESS;
}
/***********************************************************************
* MsiGetComponentStateW (MSI.@)
*/
UINT WINAPI MsiGetComponentStateW(MSIHANDLE hInstall, LPWSTR szComponent,
......
......@@ -127,8 +127,8 @@
131 stdcall MsiReinstallProductW(wstr long)
132 stub MsiSequenceA
133 stub MsiSequenceW
134 stub MsiSetComponentStateA
135 stub MsiSetComponentStateW
134 stdcall MsiSetComponentStateA(long str long)
135 stdcall MsiSetComponentStateW(long wstr long)
136 stdcall MsiSetExternalUIA(ptr long ptr)
137 stdcall MsiSetExternalUIW(ptr long ptr)
138 stdcall MsiSetFeatureStateA(long str long)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment