Module: wine Branch: refs/heads/master Commit: dfb1f4f55b5cdf5ef31641860ca449b5c3df3058 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=dfb1f4f55b5cdf5ef3164186...
Author: Mike McCormack mike@codeweavers.com Date: Fri Jul 21 14:04:09 2006 +0900
msi: Use TRACE not FIXME for already implemented functions.
---
dlls/msi/msi.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index 61c4d1a..8f11de9 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -224,7 +224,7 @@ UINT WINAPI MsiInstallProductW(LPCWSTR s MSIPACKAGE *package = NULL; 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 ); if (r == ERROR_SUCCESS) @@ -276,7 +276,7 @@ UINT WINAPI MsiConfigureProductExW(LPCWS ' ','I','n','s','t','a','l','l','e','d','=','1',0}; 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));
if (eInstallState != INSTALLSTATE_LOCAL && @@ -391,8 +391,6 @@ UINT WINAPI MsiConfigureProductA(LPCSTR UINT WINAPI MsiConfigureProductW(LPCWSTR szProduct, int iInstallLevel, INSTALLSTATE eInstallState) { - FIXME("%s %d %d\n", debugstr_w(szProduct), iInstallLevel, eInstallState); - return MsiConfigureProductExW(szProduct, iInstallLevel, eInstallState, NULL); }