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
54a2891d
Commit
54a2891d
authored
Sep 06, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make some fixme messages less alarmist.
parent
3344365f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
action.c
dlls/msi/action.c
+3
-3
source.c
dlls/msi/source.c
+3
-3
No files found.
dlls/msi/action.c
View file @
54a2891d
...
...
@@ -818,7 +818,7 @@ static BOOL ACTION_HandleStandardAction(MSIPACKAGE *package, LPCWSTR action,
}
else
{
FIXME
(
"
UNHANDLED Standard A
ction %s
\n
"
,
debugstr_w
(
action
));
FIXME
(
"
unhandled standard a
ction %s
\n
"
,
debugstr_w
(
action
));
*
rc
=
ERROR_SUCCESS
;
}
}
...
...
@@ -868,7 +868,7 @@ UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, BOOL force)
if
(
!
handled
)
{
FIXME
(
"
UNHANDLED MSI ACTION
%s
\n
"
,
debugstr_w
(
action
));
FIXME
(
"
unhandled msi action
%s
\n
"
,
debugstr_w
(
action
));
rc
=
ERROR_FUNCTION_NOT_CALLED
;
}
...
...
@@ -892,7 +892,7 @@ UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action)
if
(
!
handled
)
{
FIXME
(
"
UNHANDLED MSI ACTION
%s
\n
"
,
debugstr_w
(
action
));
FIXME
(
"
unhandled msi action
%s
\n
"
,
debugstr_w
(
action
));
rc
=
ERROR_FUNCTION_NOT_CALLED
;
}
...
...
dlls/msi/source.c
View file @
54a2891d
...
...
@@ -444,7 +444,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
rc
=
OpenURLSubkey
(
sourcekey
,
&
typekey
,
TRUE
);
else
{
ERR
(
"
Unknown media type!
\n
"
);
ERR
(
"
unknown media type: %08lx
\n
"
,
dwOptions
);
RegCloseKey
(
sourcekey
);
return
ERROR_FUNCTION_FAILED
;
}
...
...
@@ -455,7 +455,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
DWORD
current_index
=
atoiW
(
source_struct
.
szIndex
);
/* found the source */
if
(
dwIndex
>
0
&&
current_index
!=
dwIndex
)
FIXME
(
"Need to reorder the sou
ces! UNHANDLED
\n
"
);
FIXME
(
"Need to reorder the sou
rces!
\n
"
);
}
else
{
...
...
@@ -467,7 +467,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
current_index
=
atoiW
(
source_struct
.
szIndex
);
/* new source */
if
(
dwIndex
>
0
&&
dwIndex
<
current_index
)
FIXME
(
"Need to reorder the sou
ces! UNHANDLED
\n
"
);
FIXME
(
"Need to reorder the sou
rces!
\n
"
);
current_index
++
;
sprintfW
(
source_struct
.
szIndex
,
fmt
,
current_index
);
...
...
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