Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8900609d
Commit
8900609d
authored
Nov 27, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 27, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Silence some noisy FIXMEs.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ceb57b78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
dochost.c
dlls/ieframe/dochost.c
+11
-11
No files found.
dlls/ieframe/dochost.c
View file @
8900609d
...
...
@@ -655,13 +655,13 @@ static HRESULT WINAPI ClOleCommandTarget_QueryStatus(IOleCommandTarget *iface,
const
GUID
*
pguidCmdGroup
,
ULONG
cCmds
,
OLECMD
prgCmds
[],
OLECMDTEXT
*
pCmdText
)
{
DocHost
*
This
=
impl_from_IOleCommandTarget
(
iface
);
ULONG
i
=
0
;
FIXME
(
"(%p)->(%s %u %p %p)
\n
"
,
This
,
debugstr_guid
(
pguidCmdGroup
),
cCmds
,
prgCmds
,
ULONG
i
;
TRACE
(
"(%p)->(%s %u %p %p)
\n
"
,
This
,
debugstr_guid
(
pguidCmdGroup
),
cCmds
,
prgCmds
,
pCmdText
);
while
(
prgCmds
&&
(
cCmds
>
i
))
{
FIXME
(
"command_%u: %u, 0x%x
\n
"
,
i
,
prgCmds
[
i
].
cmdID
,
prgCmds
[
i
].
cmdf
);
i
++
;
}
for
(
i
=
0
;
prgCmds
&&
i
<
cCmds
;
i
++
)
TRACE
(
"unsupported command %u (%x)
\n
"
,
prgCmds
[
i
].
cmdID
,
prgCmds
[
i
].
cmdf
);
return
E_NOTIMPL
;
}
...
...
@@ -690,7 +690,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
notify_download_state
(
This
,
V_I4
(
pvaIn
));
return
S_OK
;
default:
FIXM
E
(
"Unimplemented cmdid %d
\n
"
,
nCmdID
);
TRAC
E
(
"Unimplemented cmdid %d
\n
"
,
nCmdID
);
return
E_NOTIMPL
;
}
}
...
...
@@ -742,7 +742,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
}
default:
FIXM
E
(
"unsupported command %d of CGID_DocHostCmdPriv
\n
"
,
nCmdID
);
TRAC
E
(
"unsupported command %d of CGID_DocHostCmdPriv
\n
"
,
nCmdID
);
return
E_NOTIMPL
;
}
}
...
...
@@ -755,7 +755,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
return
S_OK
;
default:
FIXM
E
(
"Unimplemented cmdid %d of CGID_Explorer
\n
"
,
nCmdID
);
TRAC
E
(
"Unimplemented cmdid %d of CGID_Explorer
\n
"
,
nCmdID
);
return
E_NOTIMPL
;
}
}
...
...
@@ -763,7 +763,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
if
(
IsEqualGUID
(
pguidCmdGroup
,
&
CGID_ShellDocView
))
{
switch
(
nCmdID
)
{
default:
FIXM
E
(
"Unimplemented cmdid %d of CGID_ShellDocView
\n
"
,
nCmdID
);
TRAC
E
(
"Unimplemented cmdid %d of CGID_ShellDocView
\n
"
,
nCmdID
);
return
E_NOTIMPL
;
}
}
...
...
@@ -774,7 +774,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
return
IOleCommandTarget_Exec
(
This
->
olecmd
,
pguidCmdGroup
,
nCmdID
,
nCmdexecopt
,
pvaIn
,
pvaOut
);
}
FIXM
E
(
"Unimplemented cmdid %d of group %s
\n
"
,
nCmdID
,
debugstr_guid
(
pguidCmdGroup
));
TRAC
E
(
"Unimplemented cmdid %d of group %s
\n
"
,
nCmdID
,
debugstr_guid
(
pguidCmdGroup
));
return
E_NOTIMPL
;
}
...
...
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