Added stubs for MsiSetComponentStateA and MsiSetComponentStateW.
This commit is contained in:
parent
febad089ce
commit
fe11241cf3
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue