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
a897adb6
Commit
a897adb6
authored
May 04, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix multiline trace message and some magic numbers.
parent
a7b99a1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
shlview.c
dlls/shell32/shlview.c
+7
-6
No files found.
dlls/shell32/shlview.c
View file @
a897adb6
...
...
@@ -2249,19 +2249,20 @@ static HRESULT WINAPI ISVOleCmdTarget_Exec(
{
IShellViewImpl
*
This
=
impl_from_IOleCommandTarget
(
iface
);
FIXME
(
"(%p)->(
\n\t
Target GUID:%s Command:0x%08x Opt:0x%08x %p
%p)
\n
"
,
This
,
debugstr_guid
(
pguidCmdGroup
),
nCmdID
,
nCmdexecopt
,
pvaIn
,
pvaOut
);
FIXME
(
"(%p)->(
%s %d 0x%08x %s
%p)
\n
"
,
This
,
debugstr_guid
(
pguidCmdGroup
),
nCmdID
,
nCmdexecopt
,
debugstr_variant
(
pvaIn
)
,
pvaOut
);
if
(
!
pguidCmdGroup
)
return
OLECMDERR_E_UNKNOWNGROUP
;
if
(
IsEqualIID
(
pguidCmdGroup
,
&
CGID_Explorer
)
&&
(
nCmdID
==
0x29
)
&&
(
nCmdID
==
OLECMDID_SHOWMESSAGE
)
&&
(
nCmdexecopt
==
4
)
&&
pvaOut
)
return
S_OK
;
if
(
IsEqualIID
(
pguidCmdGroup
,
&
CGID_ShellDocView
)
&&
(
nCmdID
==
9
)
&&
(
nCmdexecopt
==
0
))
return
1
;
(
nCmdID
==
OLECMDID_SPELL
)
&&
(
nCmdexecopt
==
OLECMDEXECOPT_DODEFAULT
))
return
S_FALSE
;
return
OLECMDERR_E_UNKNOWNGROUP
;
}
...
...
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