msi: Use TRACE not FIXME for already implemented functions.
This commit is contained in:
parent
84d6bd0469
commit
dfb1f4f55b
|
@ -224,7 +224,7 @@ UINT WINAPI MsiInstallProductW(LPCWSTR szPackagePath, LPCWSTR szCommandLine)
|
||||||
MSIPACKAGE *package = NULL;
|
MSIPACKAGE *package = NULL;
|
||||||
UINT r;
|
UINT r;
|
||||||
|
|
||||||
FIXME("%s %s\n",debugstr_w(szPackagePath), debugstr_w(szCommandLine));
|
TRACE("%s %s\n",debugstr_w(szPackagePath), debugstr_w(szCommandLine));
|
||||||
|
|
||||||
r = MSI_OpenPackageW( szPackagePath, &package );
|
r = MSI_OpenPackageW( szPackagePath, &package );
|
||||||
if (r == ERROR_SUCCESS)
|
if (r == ERROR_SUCCESS)
|
||||||
|
@ -276,7 +276,7 @@ UINT WINAPI MsiConfigureProductExW(LPCWSTR szProduct, int iInstallLevel,
|
||||||
' ','I','n','s','t','a','l','l','e','d','=','1',0};
|
' ','I','n','s','t','a','l','l','e','d','=','1',0};
|
||||||
LPWSTR commandline;
|
LPWSTR commandline;
|
||||||
|
|
||||||
FIXME("%s %d %d %s\n",debugstr_w(szProduct), iInstallLevel, eInstallState,
|
TRACE("%s %d %d %s\n",debugstr_w(szProduct), iInstallLevel, eInstallState,
|
||||||
debugstr_w(szCommandLine));
|
debugstr_w(szCommandLine));
|
||||||
|
|
||||||
if (eInstallState != INSTALLSTATE_LOCAL &&
|
if (eInstallState != INSTALLSTATE_LOCAL &&
|
||||||
|
@ -391,8 +391,6 @@ UINT WINAPI MsiConfigureProductA(LPCSTR szProduct, int iInstallLevel,
|
||||||
UINT WINAPI MsiConfigureProductW(LPCWSTR szProduct, int iInstallLevel,
|
UINT WINAPI MsiConfigureProductW(LPCWSTR szProduct, int iInstallLevel,
|
||||||
INSTALLSTATE eInstallState)
|
INSTALLSTATE eInstallState)
|
||||||
{
|
{
|
||||||
FIXME("%s %d %d\n", debugstr_w(szProduct), iInstallLevel, eInstallState);
|
|
||||||
|
|
||||||
return MsiConfigureProductExW(szProduct, iInstallLevel, eInstallState, NULL);
|
return MsiConfigureProductExW(szProduct, iInstallLevel, eInstallState, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue