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
c36e7d1e
Commit
c36e7d1e
authored
Sep 28, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Added missing arguments to trace messages.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8b661a18
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
22 deletions
+18
-22
shelldispatch.c
dlls/shell32/shelldispatch.c
+18
-22
No files found.
dlls/shell32/shelldispatch.c
View file @
c36e7d1e
...
...
@@ -1547,36 +1547,32 @@ static HRESULT WINAPI FolderImpl_ParseName(Folder3 *iface, BSTR name, FolderItem
return
hr
;
}
static
HRESULT
WINAPI
FolderImpl_NewFolder
(
Folder3
*
iface
,
BSTR
bName
,
VARIANT
vOptions
)
static
HRESULT
WINAPI
FolderImpl_NewFolder
(
Folder3
*
iface
,
BSTR
name
,
VARIANT
options
)
{
FIXME
(
"(%p,%s
)
\n
"
,
iface
,
debugstr_w
(
bName
));
FIXME
(
"(%p,%s
,%s)
\n
"
,
iface
,
debugstr_w
(
name
),
debugstr_variant
(
&
options
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderImpl_MoveHere
(
Folder3
*
iface
,
VARIANT
vItem
,
VARIANT
vOptions
)
static
HRESULT
WINAPI
FolderImpl_MoveHere
(
Folder3
*
iface
,
VARIANT
item
,
VARIANT
options
)
{
FIXME
(
"(%p
)
\n
"
,
iface
);
FIXME
(
"(%p
,%s,%s)
\n
"
,
iface
,
debugstr_variant
(
&
item
),
debugstr_variant
(
&
options
)
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderImpl_CopyHere
(
Folder3
*
iface
,
VARIANT
vItem
,
VARIANT
vOptions
)
static
HRESULT
WINAPI
FolderImpl_CopyHere
(
Folder3
*
iface
,
VARIANT
item
,
VARIANT
options
)
{
FIXME
(
"(%p
)
\n
"
,
iface
);
FIXME
(
"(%p
,%s,%s)
\n
"
,
iface
,
debugstr_variant
(
&
item
),
debugstr_variant
(
&
options
)
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderImpl_GetDetailsOf
(
Folder3
*
iface
,
VARIANT
vItem
,
int
iColumn
,
BSTR
*
pbs
)
static
HRESULT
WINAPI
FolderImpl_GetDetailsOf
(
Folder3
*
iface
,
VARIANT
item
,
int
column
,
BSTR
*
str
)
{
FIXME
(
"(%p,%
d,%p)
\n
"
,
iface
,
iColumn
,
pbs
);
FIXME
(
"(%p,%
s,%d,%p)
\n
"
,
iface
,
debugstr_variant
(
&
item
),
column
,
str
);
*
pbs
=
NULL
;
*
str
=
NULL
;
return
E_NOTIMPL
;
}
...
...
@@ -1877,7 +1873,7 @@ static HRESULT WINAPI ShellDispatch_NameSpace(IShellDispatch6 *iface,
static
HRESULT
WINAPI
ShellDispatch_BrowseForFolder
(
IShellDispatch6
*
iface
,
LONG
Hwnd
,
BSTR
Title
,
LONG
Options
,
VARIANT
RootFolder
,
Folder
**
ppsdf
)
{
FIXME
(
"(%p,%x,%s,%x,%
p)
\n
"
,
iface
,
Hwnd
,
debugstr_w
(
Title
),
Options
,
ppsdf
);
FIXME
(
"(%p,%x,%s,%x,%
s,%p)
\n
"
,
iface
,
Hwnd
,
debugstr_w
(
Title
),
Options
,
debugstr_variant
(
&
RootFolder
)
,
ppsdf
);
*
ppsdf
=
NULL
;
return
E_NOTIMPL
;
...
...
@@ -1892,16 +1888,16 @@ static HRESULT WINAPI ShellDispatch_Windows(IShellDispatch6 *iface,
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ShellDispatch_Open
(
IShellDispatch6
*
iface
,
VARIANT
vD
ir
)
static
HRESULT
WINAPI
ShellDispatch_Open
(
IShellDispatch6
*
iface
,
VARIANT
d
ir
)
{
FIXME
(
"(%p
)
\n
"
,
iface
);
FIXME
(
"(%p
,%s)
\n
"
,
iface
,
debugstr_variant
(
&
dir
)
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ShellDispatch_Explore
(
IShellDispatch6
*
iface
,
VARIANT
vD
ir
)
static
HRESULT
WINAPI
ShellDispatch_Explore
(
IShellDispatch6
*
iface
,
VARIANT
d
ir
)
{
FIXME
(
"(%p
)
\n
"
,
iface
);
FIXME
(
"(%p
,%s)
\n
"
,
iface
,
debugstr_variant
(
&
dir
)
);
return
E_NOTIMPL
;
}
...
...
@@ -2080,13 +2076,13 @@ static HRESULT WINAPI ShellDispatch_GetSystemInformation(IShellDispatch6 *iface,
static
HRESULT
WINAPI
ShellDispatch_ServiceStart
(
IShellDispatch6
*
iface
,
BSTR
service
,
VARIANT
persistent
,
VARIANT
*
ret
)
{
FIXME
(
"(%s, %
p): stub
\n
"
,
debugstr_w
(
service
),
ret
);
FIXME
(
"(%s, %
s, %p): stub
\n
"
,
debugstr_w
(
service
),
debugstr_variant
(
&
persistent
),
ret
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ShellDispatch_ServiceStop
(
IShellDispatch6
*
iface
,
BSTR
service
,
VARIANT
persistent
,
VARIANT
*
ret
)
{
FIXME
(
"(%s, %
p): stub
\n
"
,
debugstr_w
(
service
),
ret
);
FIXME
(
"(%s, %
s, %p): stub
\n
"
,
debugstr_w
(
service
),
debugstr_variant
(
&
persistent
),
ret
);
return
E_NOTIMPL
;
}
...
...
@@ -2142,13 +2138,13 @@ static HRESULT WINAPI ShellDispatch_CanStartStopService(IShellDispatch6 *iface,
static
HRESULT
WINAPI
ShellDispatch_ShowBrowserBar
(
IShellDispatch6
*
iface
,
BSTR
clsid
,
VARIANT
show
,
VARIANT
*
ret
)
{
FIXME
(
"(%s, %
p): stub
\n
"
,
debugstr_w
(
clsid
),
ret
);
FIXME
(
"(%s, %
s, %p): stub
\n
"
,
debugstr_w
(
clsid
),
debugstr_variant
(
&
show
),
ret
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ShellDispatch_AddToRecent
(
IShellDispatch6
*
iface
,
VARIANT
file
,
BSTR
category
)
{
FIXME
(
"(%s
): stub
\n
"
,
debugstr_w
(
category
));
FIXME
(
"(%s
, %s): stub
\n
"
,
debugstr_variant
(
&
file
)
,
debugstr_w
(
category
));
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