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
64b94ebf
Commit
64b94ebf
authored
Nov 12, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Improved IUri debug traces.
parent
54faf085
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
uri.c
dlls/urlmon/uri.c
+10
-8
No files found.
dlls/urlmon/uri.c
View file @
64b94ebf
...
...
@@ -4206,7 +4206,7 @@ static HRESULT WINAPI Uri_GetPropertyBSTR(IUri *iface, Uri_PROPERTY uriProp, BST
{
Uri
*
This
=
impl_from_IUri
(
iface
);
HRESULT
hres
;
TRACE
(
"(%p
)->(%d %p %x)
\n
"
,
This
,
uriProp
,
pbstrProperty
,
dwFlags
);
TRACE
(
"(%p
%s)->(%d %p %x)
\n
"
,
This
,
debugstr_w
(
This
->
canon_uri
)
,
uriProp
,
pbstrProperty
,
dwFlags
);
if
(
!
pbstrProperty
)
return
E_POINTER
;
...
...
@@ -4496,7 +4496,7 @@ static HRESULT WINAPI Uri_GetPropertyLength(IUri *iface, Uri_PROPERTY uriProp, D
{
Uri
*
This
=
impl_from_IUri
(
iface
);
HRESULT
hres
;
TRACE
(
"(%p
)->(%d %p %x)
\n
"
,
This
,
uriProp
,
pcchProperty
,
dwFlags
);
TRACE
(
"(%p
%s)->(%d %p %x)
\n
"
,
This
,
debugstr_w
(
This
->
canon_uri
)
,
uriProp
,
pcchProperty
,
dwFlags
);
if
(
!
pcchProperty
)
return
E_INVALIDARG
;
...
...
@@ -4631,7 +4631,7 @@ static HRESULT WINAPI Uri_GetPropertyDWORD(IUri *iface, Uri_PROPERTY uriProp, DW
Uri
*
This
=
impl_from_IUri
(
iface
);
HRESULT
hres
;
TRACE
(
"(%p
)->(%d %p %x)
\n
"
,
This
,
uriProp
,
pcchProperty
,
dwFlags
);
TRACE
(
"(%p
%s)->(%d %p %x)
\n
"
,
This
,
debugstr_w
(
This
->
canon_uri
)
,
uriProp
,
pcchProperty
,
dwFlags
);
if
(
!
pcchProperty
)
return
E_INVALIDARG
;
...
...
@@ -4681,7 +4681,8 @@ static HRESULT WINAPI Uri_GetPropertyDWORD(IUri *iface, Uri_PROPERTY uriProp, DW
static
HRESULT
WINAPI
Uri_HasProperty
(
IUri
*
iface
,
Uri_PROPERTY
uriProp
,
BOOL
*
pfHasProperty
)
{
Uri
*
This
=
impl_from_IUri
(
iface
);
TRACE
(
"(%p)->(%d %p)
\n
"
,
This
,
uriProp
,
pfHasProperty
);
TRACE
(
"(%p %s)->(%d %p)
\n
"
,
This
,
debugstr_w
(
This
->
canon_uri
),
uriProp
,
pfHasProperty
);
if
(
!
pfHasProperty
)
return
E_INVALIDARG
;
...
...
@@ -4872,7 +4873,7 @@ static HRESULT WINAPI Uri_GetZone(IUri *iface, DWORD *pdwZone)
static
HRESULT
WINAPI
Uri_GetProperties
(
IUri
*
iface
,
DWORD
*
pdwProperties
)
{
Uri
*
This
=
impl_from_IUri
(
iface
);
TRACE
(
"(%p
)->(%p)
\n
"
,
This
,
pdwProperties
);
TRACE
(
"(%p
%s)->(%p)
\n
"
,
This
,
debugstr_w
(
This
->
canon_uri
)
,
pdwProperties
);
if
(
!
pdwProperties
)
return
E_INVALIDARG
;
...
...
@@ -4922,7 +4923,7 @@ static HRESULT WINAPI Uri_IsEqual(IUri *iface, IUri *pUri, BOOL *pfEqual)
Uri
*
This
=
impl_from_IUri
(
iface
);
Uri
*
other
;
TRACE
(
"(%p
)->(%p %p)
\n
"
,
This
,
pUri
,
pfEqual
);
TRACE
(
"(%p
%s)->(%p %p)
\n
"
,
This
,
debugstr_w
(
This
->
canon_uri
)
,
pUri
,
pfEqual
);
if
(
!
pfEqual
)
return
E_POINTER
;
...
...
@@ -4935,9 +4936,10 @@ static HRESULT WINAPI Uri_IsEqual(IUri *iface, IUri *pUri, BOOL *pfEqual)
}
/* Try to convert it to a Uri (allows for a more simple comparison). */
if
((
other
=
get_uri_obj
(
pUri
)))
if
((
other
=
get_uri_obj
(
pUri
)))
{
TRACE
(
"comparing to %s
\n
"
,
debugstr_w
(
other
->
canon_uri
));
*
pfEqual
=
are_equal_simple
(
This
,
other
);
else
{
}
else
{
/* Do it the hard way. */
FIXME
(
"(%p)->(%p %p) No support for unknown IUri's yet.
\n
"
,
iface
,
pUri
,
pfEqual
);
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