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
c89551a1
Commit
c89551a1
authored
Sep 09, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added FIXME about unsupported pmkToLeft to BindToStorage.
parent
b5c0573d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
umon.c
dlls/urlmon/umon.c
+5
-8
No files found.
dlls/urlmon/umon.c
View file @
c89551a1
...
@@ -500,7 +500,6 @@ static HRESULT WINAPI URLMonikerImpl_BindToObject(IMoniker* iface,
...
@@ -500,7 +500,6 @@ static HRESULT WINAPI URLMonikerImpl_BindToObject(IMoniker* iface,
******************************************************************************/
******************************************************************************/
static
HRESULT
URLMonikerImpl_BindToStorage_hack
(
LPCWSTR
URLName
,
static
HRESULT
URLMonikerImpl_BindToStorage_hack
(
LPCWSTR
URLName
,
IBindCtx
*
pbc
,
IBindCtx
*
pbc
,
IMoniker
*
pmkToLeft
,
REFIID
riid
,
REFIID
riid
,
VOID
**
ppvObject
)
VOID
**
ppvObject
)
{
{
...
@@ -511,13 +510,8 @@ static HRESULT URLMonikerImpl_BindToStorage_hack(LPCWSTR URLName,
...
@@ -511,13 +510,8 @@ static HRESULT URLMonikerImpl_BindToStorage_hack(LPCWSTR URLName,
Binding
*
bind
;
Binding
*
bind
;
int
len
;
int
len
;
WARN
(
"(%s %p %p %s %p)
\n
"
,
debugstr_w
(
URLName
),
pbc
,
pmkToLeft
,
debugstr_guid
(
riid
),
WARN
(
"(%s %p %s %p)
\n
"
,
debugstr_w
(
URLName
),
pbc
,
debugstr_guid
(
riid
),
ppvObject
);
ppvObject
);
if
(
pmkToLeft
)
{
FIXME
(
"pmkToLeft != NULL
\n
"
);
return
E_NOTIMPL
;
}
if
(
!
IsEqualIID
(
&
IID_IStream
,
riid
))
{
if
(
!
IsEqualIID
(
&
IID_IStream
,
riid
))
{
FIXME
(
"unsupported iid
\n
"
);
FIXME
(
"unsupported iid
\n
"
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
...
@@ -743,6 +737,9 @@ static HRESULT WINAPI URLMonikerImpl_BindToStorage(IMoniker* iface,
...
@@ -743,6 +737,9 @@ static HRESULT WINAPI URLMonikerImpl_BindToStorage(IMoniker* iface,
URL_COMPONENTSW
url
=
{
sizeof
(
URL_COMPONENTSW
),
schema
,
URL_COMPONENTSW
url
=
{
sizeof
(
URL_COMPONENTSW
),
schema
,
sizeof
(
schema
)
/
sizeof
(
WCHAR
),
0
,
NULL
,
0
,
0
,
NULL
,
0
,
NULL
,
0
,
NULL
,
0
,
NULL
,
0
};
sizeof
(
schema
)
/
sizeof
(
WCHAR
),
0
,
NULL
,
0
,
0
,
NULL
,
0
,
NULL
,
0
,
NULL
,
0
,
NULL
,
0
};
if
(
pmkToLeft
)
FIXME
(
"Unsupported pmkToLeft
\n
"
);
bret
=
InternetCrackUrlW
(
This
->
URLName
,
0
,
ICU_ESCAPE
,
&
url
);
bret
=
InternetCrackUrlW
(
This
->
URLName
,
0
,
ICU_ESCAPE
,
&
url
);
if
(
!
bret
)
{
if
(
!
bret
)
{
ERR
(
"InternetCrackUrl failed: %u
\n
"
,
GetLastError
());
ERR
(
"InternetCrackUrl failed: %u
\n
"
,
GetLastError
());
...
@@ -752,7 +749,7 @@ static HRESULT WINAPI URLMonikerImpl_BindToStorage(IMoniker* iface,
...
@@ -752,7 +749,7 @@ static HRESULT WINAPI URLMonikerImpl_BindToStorage(IMoniker* iface,
if
(
url
.
nScheme
==
INTERNET_SCHEME_HTTPS
if
(
url
.
nScheme
==
INTERNET_SCHEME_HTTPS
||
url
.
nScheme
==
INTERNET_SCHEME_FTP
||
url
.
nScheme
==
INTERNET_SCHEME_FTP
||
url
.
nScheme
==
INTERNET_SCHEME_GOPHER
)
||
url
.
nScheme
==
INTERNET_SCHEME_GOPHER
)
return
URLMonikerImpl_BindToStorage_hack
(
This
->
URLName
,
pbc
,
pmkToLeft
,
riid
,
ppvObject
);
return
URLMonikerImpl_BindToStorage_hack
(
This
->
URLName
,
pbc
,
riid
,
ppvObject
);
TRACE
(
"(%p)->(%p %p %s %p)
\n
"
,
This
,
pbc
,
pmkToLeft
,
debugstr_guid
(
riid
),
ppvObject
);
TRACE
(
"(%p)->(%p %p %s %p)
\n
"
,
This
,
pbc
,
pmkToLeft
,
debugstr_guid
(
riid
),
ppvObject
);
...
...
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