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
d95d6b5d
Commit
d95d6b5d
authored
Sep 08, 2010
by
Thomas Mullaly
Committed by
Alexandre Julliard
Sep 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Implemented IUriBuilder_{Get/Set}IUri.
parent
d56e62a1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
4 deletions
+73
-4
uri.c
dlls/urlmon/tests/uri.c
+0
-0
uri.c
dlls/urlmon/uri.c
+73
-4
No files found.
dlls/urlmon/tests/uri.c
View file @
d95d6b5d
This diff is collapsed.
Click to expand it.
dlls/urlmon/uri.c
View file @
d95d6b5d
...
@@ -3343,6 +3343,44 @@ static HRESULT set_builder_component(LPWSTR *component, DWORD *component_len, LP
...
@@ -3343,6 +3343,44 @@ static HRESULT set_builder_component(LPWSTR *component, DWORD *component_len, LP
#define URI(x) ((IUri*) &(x)->lpIUriVtbl)
#define URI(x) ((IUri*) &(x)->lpIUriVtbl)
#define URIBUILDER(x) ((IUriBuilder*) &(x)->lpIUriBuilderVtbl)
#define URIBUILDER(x) ((IUriBuilder*) &(x)->lpIUriBuilderVtbl)
static
void
reset_builder
(
UriBuilder
*
builder
)
{
if
(
builder
->
uri
)
IUri_Release
(
URI
(
builder
->
uri
));
builder
->
uri
=
NULL
;
heap_free
(
builder
->
fragment
);
builder
->
fragment
=
NULL
;
builder
->
fragment_len
=
0
;
heap_free
(
builder
->
host
);
builder
->
host
=
NULL
;
builder
->
host_len
=
0
;
heap_free
(
builder
->
password
);
builder
->
password
=
NULL
;
builder
->
password_len
=
0
;
heap_free
(
builder
->
path
);
builder
->
path
=
NULL
;
builder
->
path_len
=
0
;
heap_free
(
builder
->
query
);
builder
->
query
=
NULL
;
builder
->
query_len
=
0
;
heap_free
(
builder
->
scheme
);
builder
->
scheme
=
NULL
;
builder
->
scheme_len
=
0
;
heap_free
(
builder
->
username
);
builder
->
username
=
NULL
;
builder
->
username_len
=
0
;
builder
->
has_port
=
FALSE
;
builder
->
port
=
0
;
builder
->
modified_props
=
0
;
}
#define URI_THIS(iface) DEFINE_THIS(Uri, IUri, iface)
#define URI_THIS(iface) DEFINE_THIS(Uri, IUri, iface)
static
HRESULT
WINAPI
Uri_QueryInterface
(
IUri
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
WINAPI
Uri_QueryInterface
(
IUri
*
iface
,
REFIID
riid
,
void
**
ppv
)
...
@@ -4471,15 +4509,46 @@ static HRESULT WINAPI UriBuilder_GetIUri(IUriBuilder *iface, IUri **ppIUri)
...
@@ -4471,15 +4509,46 @@ static HRESULT WINAPI UriBuilder_GetIUri(IUriBuilder *iface, IUri **ppIUri)
if
(
!
ppIUri
)
if
(
!
ppIUri
)
return
E_POINTER
;
return
E_POINTER
;
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
ppIUri
);
if
(
This
->
uri
)
{
return
E_NOTIMPL
;
IUri
*
uri
=
URI
(
This
->
uri
);
IUri_AddRef
(
uri
);
*
ppIUri
=
uri
;
}
else
*
ppIUri
=
NULL
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
UriBuilder_SetIUri
(
IUriBuilder
*
iface
,
IUri
*
pIUri
)
static
HRESULT
WINAPI
UriBuilder_SetIUri
(
IUriBuilder
*
iface
,
IUri
*
pIUri
)
{
{
UriBuilder
*
This
=
URIBUILDER_THIS
(
iface
);
UriBuilder
*
This
=
URIBUILDER_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pIUri
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
pIUri
);
return
E_NOTIMPL
;
if
(
pIUri
)
{
Uri
*
uri
;
if
((
uri
=
get_uri_obj
(
pIUri
)))
{
/* Only reset the builder if it's Uri isn't the same as
* the Uri passed to the function.
*/
if
(
This
->
uri
!=
uri
)
{
reset_builder
(
This
);
This
->
uri
=
uri
;
if
(
uri
->
has_port
)
This
->
port
=
uri
->
port
;
IUri_AddRef
(
pIUri
);
}
}
else
{
FIXME
(
"(%p)->(%p) Unknown IUri types not supported yet.
\n
"
,
This
,
pIUri
);
return
E_NOTIMPL
;
}
}
else
if
(
This
->
uri
)
/* Only reset the builder if it's Uri isn't NULL. */
reset_builder
(
This
);
return
S_OK
;
}
}
static
HRESULT
WINAPI
UriBuilder_GetFragment
(
IUriBuilder
*
iface
,
DWORD
*
pcchFragment
,
LPCWSTR
*
ppwzFragment
)
static
HRESULT
WINAPI
UriBuilder_GetFragment
(
IUriBuilder
*
iface
,
DWORD
*
pcchFragment
,
LPCWSTR
*
ppwzFragment
)
...
...
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