Added stubs for MsiSetComponentStateA and MsiSetComponentStateW.

oldstable
Johan Dahlin 2005-08-24 10:56:27 +00:00 committed by Alexandre Julliard
parent febad089ce
commit fe11241cf3
2 changed files with 22 additions and 2 deletions

View File

@ -523,6 +523,16 @@ piAction);
return ret;
}
/***********************************************************************
* 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.@)
*/
@ -564,6 +574,16 @@ UINT MSI_GetComponentStateW(MSIPACKAGE *package, LPWSTR szComponent,
return ERROR_SUCCESS;
}
/***********************************************************************
* 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.@)
*/

View File

@ -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)