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
3c985a44
Commit
3c985a44
authored
Dec 28, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Rename BindProtocol's IInternetProtocolSink methods.
Binding's implementation uses the same names, what makes reading logs harder.
parent
8f095223
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
bindprot.c
dlls/urlmon/bindprot.c
+14
-14
No files found.
dlls/urlmon/bindprot.c
View file @
3c985a44
...
...
@@ -399,26 +399,26 @@ static const IInternetPriorityVtbl InternetPriorityVtbl = {
#define PROTSINK_THIS(iface) DEFINE_THIS(BindProtocol, InternetProtocolSink, iface)
static
HRESULT
WINAPI
InternetProtocolSink_QueryInterface
(
IInternetProtocolSink
*
iface
,
static
HRESULT
WINAPI
BP
InternetProtocolSink_QueryInterface
(
IInternetProtocolSink
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
BindProtocol
*
This
=
PROTSINK_THIS
(
iface
);
return
IInternetProtocol_QueryInterface
(
PROTOCOL
(
This
),
riid
,
ppv
);
}
static
ULONG
WINAPI
InternetProtocolSink_AddRef
(
IInternetProtocolSink
*
iface
)
static
ULONG
WINAPI
BP
InternetProtocolSink_AddRef
(
IInternetProtocolSink
*
iface
)
{
BindProtocol
*
This
=
PROTSINK_THIS
(
iface
);
return
IInternetProtocol_AddRef
(
PROTOCOL
(
This
));
}
static
ULONG
WINAPI
InternetProtocolSink_Release
(
IInternetProtocolSink
*
iface
)
static
ULONG
WINAPI
BP
InternetProtocolSink_Release
(
IInternetProtocolSink
*
iface
)
{
BindProtocol
*
This
=
PROTSINK_THIS
(
iface
);
return
IInternetProtocol_Release
(
PROTOCOL
(
This
));
}
static
HRESULT
WINAPI
InternetProtocolSink_Switch
(
IInternetProtocolSink
*
iface
,
static
HRESULT
WINAPI
BP
InternetProtocolSink_Switch
(
IInternetProtocolSink
*
iface
,
PROTOCOLDATA
*
pProtocolData
)
{
BindProtocol
*
This
=
PROTSINK_THIS
(
iface
);
...
...
@@ -428,7 +428,7 @@ static HRESULT WINAPI InternetProtocolSink_Switch(IInternetProtocolSink *iface,
return
IInternetProtocolSink_Switch
(
This
->
protocol_sink
,
pProtocolData
);
}
static
HRESULT
WINAPI
InternetProtocolSink_ReportProgress
(
IInternetProtocolSink
*
iface
,
static
HRESULT
WINAPI
BP
InternetProtocolSink_ReportProgress
(
IInternetProtocolSink
*
iface
,
ULONG
ulStatusCode
,
LPCWSTR
szStatusText
)
{
BindProtocol
*
This
=
PROTSINK_THIS
(
iface
);
...
...
@@ -453,7 +453,7 @@ static HRESULT WINAPI InternetProtocolSink_ReportProgress(IInternetProtocolSink
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
InternetProtocolSink_ReportData
(
IInternetProtocolSink
*
iface
,
static
HRESULT
WINAPI
BP
InternetProtocolSink_ReportData
(
IInternetProtocolSink
*
iface
,
DWORD
grfBSCF
,
ULONG
ulProgress
,
ULONG
ulProgressMax
)
{
BindProtocol
*
This
=
PROTSINK_THIS
(
iface
);
...
...
@@ -463,7 +463,7 @@ static HRESULT WINAPI InternetProtocolSink_ReportData(IInternetProtocolSink *ifa
return
IInternetProtocolSink_ReportData
(
This
->
protocol_sink
,
grfBSCF
,
ulProgress
,
ulProgressMax
);
}
static
HRESULT
WINAPI
InternetProtocolSink_ReportResult
(
IInternetProtocolSink
*
iface
,
static
HRESULT
WINAPI
BP
InternetProtocolSink_ReportResult
(
IInternetProtocolSink
*
iface
,
HRESULT
hrResult
,
DWORD
dwError
,
LPCWSTR
szResult
)
{
BindProtocol
*
This
=
PROTSINK_THIS
(
iface
);
...
...
@@ -476,13 +476,13 @@ static HRESULT WINAPI InternetProtocolSink_ReportResult(IInternetProtocolSink *i
#undef PROTSINK_THIS
static
const
IInternetProtocolSinkVtbl
InternetProtocolSinkVtbl
=
{
InternetProtocolSink_QueryInterface
,
InternetProtocolSink_AddRef
,
InternetProtocolSink_Release
,
InternetProtocolSink_Switch
,
InternetProtocolSink_ReportProgress
,
InternetProtocolSink_ReportData
,
InternetProtocolSink_ReportResult
BP
InternetProtocolSink_QueryInterface
,
BP
InternetProtocolSink_AddRef
,
BP
InternetProtocolSink_Release
,
BP
InternetProtocolSink_Switch
,
BP
InternetProtocolSink_ReportProgress
,
BP
InternetProtocolSink_ReportData
,
BP
InternetProtocolSink_ReportResult
};
#define SERVPROV_THIS(iface) DEFINE_THIS(BindProtocol, ServiceProvider, iface)
...
...
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