Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dfb1f4f5
Commit
dfb1f4f5
authored
Jul 21, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Use TRACE not FIXME for already implemented functions.
parent
84d6bd04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
msi.c
dlls/msi/msi.c
+2
-4
No files found.
dlls/msi/msi.c
View file @
dfb1f4f5
...
...
@@ -224,7 +224,7 @@ UINT WINAPI MsiInstallProductW(LPCWSTR szPackagePath, LPCWSTR szCommandLine)
MSIPACKAGE
*
package
=
NULL
;
UINT
r
;
FIXM
E
(
"%s %s
\n
"
,
debugstr_w
(
szPackagePath
),
debugstr_w
(
szCommandLine
));
TRAC
E
(
"%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(LPCWSTR szProduct, int iInstallLevel,
' '
,
'I'
,
'n'
,
's'
,
't'
,
'a'
,
'l'
,
'l'
,
'e'
,
'd'
,
'='
,
'1'
,
0
};
LPWSTR
commandline
;
FIXM
E
(
"%s %d %d %s
\n
"
,
debugstr_w
(
szProduct
),
iInstallLevel
,
eInstallState
,
TRAC
E
(
"%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 szProduct, int iInstallLevel,
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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment