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
872e3f3a
Commit
872e3f3a
authored
Dec 06, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 06, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itss: Use ifaces instead of vtbl pointers in ITSProtocol.
parent
23169289
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
44 deletions
+41
-44
itsstor.h
dlls/itss/itsstor.h
+0
-2
protocol.c
dlls/itss/protocol.c
+41
-42
No files found.
dlls/itss/itsstor.h
View file @
872e3f3a
...
@@ -41,6 +41,4 @@ extern LONG dll_count;
...
@@ -41,6 +41,4 @@ extern LONG dll_count;
static
inline
void
ITSS_LockModule
(
void
)
{
InterlockedIncrement
(
&
dll_count
);
}
static
inline
void
ITSS_LockModule
(
void
)
{
InterlockedIncrement
(
&
dll_count
);
}
static
inline
void
ITSS_UnlockModule
(
void
)
{
InterlockedDecrement
(
&
dll_count
);
}
static
inline
void
ITSS_UnlockModule
(
void
)
{
InterlockedDecrement
(
&
dll_count
);
}
#define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
#endif
/* __WINE_ITS_STORAGE_PRIVATE__ */
#endif
/* __WINE_ITS_STORAGE_PRIVATE__ */
dlls/itss/protocol.c
View file @
872e3f3a
...
@@ -36,8 +36,8 @@
...
@@ -36,8 +36,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
itss
);
WINE_DEFAULT_DEBUG_CHANNEL
(
itss
);
typedef
struct
{
typedef
struct
{
const
IInternetProtocolVtbl
*
lpInternetProtocolVtbl
;
IInternetProtocol
IInternetProtocol_iface
;
const
IInternetProtocolInfoVtbl
*
lpInternetProtocolInfoVtbl
;
IInternetProtocolInfo
IInternetProtocolInfo_iface
;
LONG
ref
;
LONG
ref
;
...
@@ -46,8 +46,15 @@ typedef struct {
...
@@ -46,8 +46,15 @@ typedef struct {
struct
chmUnitInfo
chm_object
;
struct
chmUnitInfo
chm_object
;
}
ITSProtocol
;
}
ITSProtocol
;
#define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
static
inline
ITSProtocol
*
impl_from_IInternetProtocol
(
IInternetProtocol
*
iface
)
#define PROTINFO(x) (&(x)->lpInternetProtocolInfoVtbl)
{
return
CONTAINING_RECORD
(
iface
,
ITSProtocol
,
IInternetProtocol_iface
);
}
static
inline
ITSProtocol
*
impl_from_IInternetProtocolInfo
(
IInternetProtocolInfo
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
ITSProtocol
,
IInternetProtocolInfo_iface
);
}
static
void
release_chm
(
ITSProtocol
*
This
)
static
void
release_chm
(
ITSProtocol
*
This
)
{
{
...
@@ -58,25 +65,23 @@ static void release_chm(ITSProtocol *This)
...
@@ -58,25 +65,23 @@ static void release_chm(ITSProtocol *This)
This
->
offset
=
0
;
This
->
offset
=
0
;
}
}
#define PROTOCOL_THIS(iface) DEFINE_THIS(ITSProtocol, InternetProtocol, iface)
static
HRESULT
WINAPI
ITSProtocol_QueryInterface
(
IInternetProtocol
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
WINAPI
ITSProtocol_QueryInterface
(
IInternetProtocol
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
*
ppv
=
NULL
;
*
ppv
=
NULL
;
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
))
{
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
))
{
TRACE
(
"(%p)->(IID_IUnknown %p)
\n
"
,
This
,
ppv
);
TRACE
(
"(%p)->(IID_IUnknown %p)
\n
"
,
This
,
ppv
);
*
ppv
=
PROTOCOL
(
This
)
;
*
ppv
=
&
This
->
IInternetProtocol_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocolRoot
,
riid
))
{
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocolRoot
,
riid
))
{
TRACE
(
"(%p)->(IID_IInternetProtocolRoot %p)
\n
"
,
This
,
ppv
);
TRACE
(
"(%p)->(IID_IInternetProtocolRoot %p)
\n
"
,
This
,
ppv
);
*
ppv
=
PROTOCOL
(
This
)
;
*
ppv
=
&
This
->
IInternetProtocol_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocol
,
riid
))
{
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocol
,
riid
))
{
TRACE
(
"(%p)->(IID_IInternetProtocol %p)
\n
"
,
This
,
ppv
);
TRACE
(
"(%p)->(IID_IInternetProtocol %p)
\n
"
,
This
,
ppv
);
*
ppv
=
PROTOCOL
(
This
)
;
*
ppv
=
&
This
->
IInternetProtocol_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocolInfo
,
riid
))
{
}
else
if
(
IsEqualGUID
(
&
IID_IInternetProtocolInfo
,
riid
))
{
TRACE
(
"(%p)->(IID_IInternetProtocolInfo %p)
\n
"
,
This
,
ppv
);
TRACE
(
"(%p)->(IID_IInternetProtocolInfo %p)
\n
"
,
This
,
ppv
);
*
ppv
=
PROTINFO
(
This
)
;
*
ppv
=
&
This
->
IInternetProtocolInfo_iface
;
}
}
if
(
*
ppv
)
{
if
(
*
ppv
)
{
...
@@ -90,7 +95,7 @@ static HRESULT WINAPI ITSProtocol_QueryInterface(IInternetProtocol *iface, REFII
...
@@ -90,7 +95,7 @@ static HRESULT WINAPI ITSProtocol_QueryInterface(IInternetProtocol *iface, REFII
static
ULONG
WINAPI
ITSProtocol_AddRef
(
IInternetProtocol
*
iface
)
static
ULONG
WINAPI
ITSProtocol_AddRef
(
IInternetProtocol
*
iface
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
return
ref
;
return
ref
;
...
@@ -98,7 +103,7 @@ static ULONG WINAPI ITSProtocol_AddRef(IInternetProtocol *iface)
...
@@ -98,7 +103,7 @@ static ULONG WINAPI ITSProtocol_AddRef(IInternetProtocol *iface)
static
ULONG
WINAPI
ITSProtocol_Release
(
IInternetProtocol
*
iface
)
static
ULONG
WINAPI
ITSProtocol_Release
(
IInternetProtocol
*
iface
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
...
@@ -139,7 +144,7 @@ static HRESULT WINAPI ITSProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -139,7 +144,7 @@ static HRESULT WINAPI ITSProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
IInternetProtocolSink
*
pOIProtSink
,
IInternetBindInfo
*
pOIBindInfo
,
IInternetProtocolSink
*
pOIProtSink
,
IInternetBindInfo
*
pOIBindInfo
,
DWORD
grfPI
,
HANDLE_PTR
dwReserved
)
DWORD
grfPI
,
HANDLE_PTR
dwReserved
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
BINDINFO
bindinfo
;
BINDINFO
bindinfo
;
DWORD
bindf
=
0
,
len
;
DWORD
bindf
=
0
,
len
;
LPWSTR
file_name
,
mime
,
object_name
,
p
;
LPWSTR
file_name
,
mime
,
object_name
,
p
;
...
@@ -252,7 +257,7 @@ static HRESULT WINAPI ITSProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -252,7 +257,7 @@ static HRESULT WINAPI ITSProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
static
HRESULT
WINAPI
ITSProtocol_Continue
(
IInternetProtocol
*
iface
,
PROTOCOLDATA
*
pProtocolData
)
static
HRESULT
WINAPI
ITSProtocol_Continue
(
IInternetProtocol
*
iface
,
PROTOCOLDATA
*
pProtocolData
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pProtocolData
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pProtocolData
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -260,14 +265,14 @@ static HRESULT WINAPI ITSProtocol_Continue(IInternetProtocol *iface, PROTOCOLDAT
...
@@ -260,14 +265,14 @@ static HRESULT WINAPI ITSProtocol_Continue(IInternetProtocol *iface, PROTOCOLDAT
static
HRESULT
WINAPI
ITSProtocol_Abort
(
IInternetProtocol
*
iface
,
HRESULT
hrReason
,
static
HRESULT
WINAPI
ITSProtocol_Abort
(
IInternetProtocol
*
iface
,
HRESULT
hrReason
,
DWORD
dwOptions
)
DWORD
dwOptions
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
FIXME
(
"(%p)->(%08x %08x)
\n
"
,
This
,
hrReason
,
dwOptions
);
FIXME
(
"(%p)->(%08x %08x)
\n
"
,
This
,
hrReason
,
dwOptions
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ITSProtocol_Terminate
(
IInternetProtocol
*
iface
,
DWORD
dwOptions
)
static
HRESULT
WINAPI
ITSProtocol_Terminate
(
IInternetProtocol
*
iface
,
DWORD
dwOptions
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
TRACE
(
"(%p)->(%08x)
\n
"
,
This
,
dwOptions
);
TRACE
(
"(%p)->(%08x)
\n
"
,
This
,
dwOptions
);
...
@@ -276,14 +281,14 @@ static HRESULT WINAPI ITSProtocol_Terminate(IInternetProtocol *iface, DWORD dwOp
...
@@ -276,14 +281,14 @@ static HRESULT WINAPI ITSProtocol_Terminate(IInternetProtocol *iface, DWORD dwOp
static
HRESULT
WINAPI
ITSProtocol_Suspend
(
IInternetProtocol
*
iface
)
static
HRESULT
WINAPI
ITSProtocol_Suspend
(
IInternetProtocol
*
iface
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ITSProtocol_Resume
(
IInternetProtocol
*
iface
)
static
HRESULT
WINAPI
ITSProtocol_Resume
(
IInternetProtocol
*
iface
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -291,7 +296,7 @@ static HRESULT WINAPI ITSProtocol_Resume(IInternetProtocol *iface)
...
@@ -291,7 +296,7 @@ static HRESULT WINAPI ITSProtocol_Resume(IInternetProtocol *iface)
static
HRESULT
WINAPI
ITSProtocol_Read
(
IInternetProtocol
*
iface
,
void
*
pv
,
static
HRESULT
WINAPI
ITSProtocol_Read
(
IInternetProtocol
*
iface
,
void
*
pv
,
ULONG
cb
,
ULONG
*
pcbRead
)
ULONG
cb
,
ULONG
*
pcbRead
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
TRACE
(
"(%p)->(%p %u %p)
\n
"
,
This
,
pv
,
cb
,
pcbRead
);
TRACE
(
"(%p)->(%p %u %p)
\n
"
,
This
,
pv
,
cb
,
pcbRead
);
...
@@ -307,14 +312,14 @@ static HRESULT WINAPI ITSProtocol_Read(IInternetProtocol *iface, void *pv,
...
@@ -307,14 +312,14 @@ static HRESULT WINAPI ITSProtocol_Read(IInternetProtocol *iface, void *pv,
static
HRESULT
WINAPI
ITSProtocol_Seek
(
IInternetProtocol
*
iface
,
LARGE_INTEGER
dlibMove
,
static
HRESULT
WINAPI
ITSProtocol_Seek
(
IInternetProtocol
*
iface
,
LARGE_INTEGER
dlibMove
,
DWORD
dwOrigin
,
ULARGE_INTEGER
*
plibNewPosition
)
DWORD
dwOrigin
,
ULARGE_INTEGER
*
plibNewPosition
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
FIXME
(
"(%p)->(%d %d %p)
\n
"
,
This
,
dlibMove
.
u
.
LowPart
,
dwOrigin
,
plibNewPosition
);
FIXME
(
"(%p)->(%d %d %p)
\n
"
,
This
,
dlibMove
.
u
.
LowPart
,
dwOrigin
,
plibNewPosition
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ITSProtocol_LockRequest
(
IInternetProtocol
*
iface
,
DWORD
dwOptions
)
static
HRESULT
WINAPI
ITSProtocol_LockRequest
(
IInternetProtocol
*
iface
,
DWORD
dwOptions
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
TRACE
(
"(%p)->(%08x)
\n
"
,
This
,
dwOptions
);
TRACE
(
"(%p)->(%08x)
\n
"
,
This
,
dwOptions
);
...
@@ -323,15 +328,13 @@ static HRESULT WINAPI ITSProtocol_LockRequest(IInternetProtocol *iface, DWORD dw
...
@@ -323,15 +328,13 @@ static HRESULT WINAPI ITSProtocol_LockRequest(IInternetProtocol *iface, DWORD dw
static
HRESULT
WINAPI
ITSProtocol_UnlockRequest
(
IInternetProtocol
*
iface
)
static
HRESULT
WINAPI
ITSProtocol_UnlockRequest
(
IInternetProtocol
*
iface
)
{
{
ITSProtocol
*
This
=
PROTOCOL_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocol
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
TRACE
(
"(%p)
\n
"
,
This
);
return
S_OK
;
return
S_OK
;
}
}
#undef PROTOCOL_THIS
static
const
IInternetProtocolVtbl
ITSProtocolVtbl
=
{
static
const
IInternetProtocolVtbl
ITSProtocolVtbl
=
{
ITSProtocol_QueryInterface
,
ITSProtocol_QueryInterface
,
ITSProtocol_AddRef
,
ITSProtocol_AddRef
,
...
@@ -348,32 +351,30 @@ static const IInternetProtocolVtbl ITSProtocolVtbl = {
...
@@ -348,32 +351,30 @@ static const IInternetProtocolVtbl ITSProtocolVtbl = {
ITSProtocol_UnlockRequest
ITSProtocol_UnlockRequest
};
};
#define PROTINFO_THIS(iface) DEFINE_THIS(ITSProtocol, InternetProtocolInfo, iface)
static
HRESULT
WINAPI
ITSProtocolInfo_QueryInterface
(
IInternetProtocolInfo
*
iface
,
static
HRESULT
WINAPI
ITSProtocolInfo_QueryInterface
(
IInternetProtocolInfo
*
iface
,
REFIID
riid
,
void
**
ppv
)
REFIID
riid
,
void
**
ppv
)
{
{
ITSProtocol
*
This
=
PROTINFO_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
return
IInternetProtocol_QueryInterface
(
PROTOCOL
(
This
)
,
riid
,
ppv
);
return
IInternetProtocol_QueryInterface
(
&
This
->
IInternetProtocol_iface
,
riid
,
ppv
);
}
}
static
ULONG
WINAPI
ITSProtocolInfo_AddRef
(
IInternetProtocolInfo
*
iface
)
static
ULONG
WINAPI
ITSProtocolInfo_AddRef
(
IInternetProtocolInfo
*
iface
)
{
{
ITSProtocol
*
This
=
PROTINFO_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
return
IInternetProtocol_AddRef
(
PROTOCOL
(
This
)
);
return
IInternetProtocol_AddRef
(
&
This
->
IInternetProtocol_iface
);
}
}
static
ULONG
WINAPI
ITSProtocolInfo_Release
(
IInternetProtocolInfo
*
iface
)
static
ULONG
WINAPI
ITSProtocolInfo_Release
(
IInternetProtocolInfo
*
iface
)
{
{
ITSProtocol
*
This
=
PROTINFO_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
return
IInternetProtocol_Release
(
PROTOCOL
(
This
)
);
return
IInternetProtocol_Release
(
&
This
->
IInternetProtocol_iface
);
}
}
static
HRESULT
WINAPI
ITSProtocolInfo_ParseUrl
(
IInternetProtocolInfo
*
iface
,
LPCWSTR
pwzUrl
,
static
HRESULT
WINAPI
ITSProtocolInfo_ParseUrl
(
IInternetProtocolInfo
*
iface
,
LPCWSTR
pwzUrl
,
PARSEACTION
ParseAction
,
DWORD
dwParseFlags
,
LPWSTR
pwzResult
,
DWORD
cchResult
,
PARSEACTION
ParseAction
,
DWORD
dwParseFlags
,
LPWSTR
pwzResult
,
DWORD
cchResult
,
DWORD
*
pcchResult
,
DWORD
dwReserved
)
DWORD
*
pcchResult
,
DWORD
dwReserved
)
{
{
ITSProtocol
*
This
=
PROTINFO_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
TRACE
(
"(%p)->(%s %x %08x %p %d %p %d)
\n
"
,
This
,
debugstr_w
(
pwzUrl
),
ParseAction
,
TRACE
(
"(%p)->(%s %x %08x %p %d %p %d)
\n
"
,
This
,
debugstr_w
(
pwzUrl
),
ParseAction
,
dwParseFlags
,
pwzResult
,
cchResult
,
pcchResult
,
dwReserved
);
dwParseFlags
,
pwzResult
,
cchResult
,
pcchResult
,
dwReserved
);
...
@@ -396,7 +397,7 @@ static HRESULT WINAPI ITSProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
...
@@ -396,7 +397,7 @@ static HRESULT WINAPI ITSProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
LPCWSTR
pwzBaseUrl
,
LPCWSTR
pwzRelativeUrl
,
DWORD
dwCombineFlags
,
LPWSTR
pwzResult
,
LPCWSTR
pwzBaseUrl
,
LPCWSTR
pwzRelativeUrl
,
DWORD
dwCombineFlags
,
LPWSTR
pwzResult
,
DWORD
cchResult
,
DWORD
*
pcchResult
,
DWORD
dwReserved
)
DWORD
cchResult
,
DWORD
*
pcchResult
,
DWORD
dwReserved
)
{
{
ITSProtocol
*
This
=
PROTINFO_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
LPCWSTR
base_end
,
ptr
;
LPCWSTR
base_end
,
ptr
;
DWORD
rel_len
;
DWORD
rel_len
;
...
@@ -441,7 +442,7 @@ static HRESULT WINAPI ITSProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
...
@@ -441,7 +442,7 @@ static HRESULT WINAPI ITSProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
static
HRESULT
WINAPI
ITSProtocolInfo_CompareUrl
(
IInternetProtocolInfo
*
iface
,
LPCWSTR
pwzUrl1
,
static
HRESULT
WINAPI
ITSProtocolInfo_CompareUrl
(
IInternetProtocolInfo
*
iface
,
LPCWSTR
pwzUrl1
,
LPCWSTR
pwzUrl2
,
DWORD
dwCompareFlags
)
LPCWSTR
pwzUrl2
,
DWORD
dwCompareFlags
)
{
{
ITSProtocol
*
This
=
PROTINFO_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
FIXME
(
"%p)->(%s %s %08x)
\n
"
,
This
,
debugstr_w
(
pwzUrl1
),
debugstr_w
(
pwzUrl2
),
dwCompareFlags
);
FIXME
(
"%p)->(%s %s %08x)
\n
"
,
This
,
debugstr_w
(
pwzUrl1
),
debugstr_w
(
pwzUrl2
),
dwCompareFlags
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -450,14 +451,12 @@ static HRESULT WINAPI ITSProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LP
...
@@ -450,14 +451,12 @@ static HRESULT WINAPI ITSProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LP
QUERYOPTION
QueryOption
,
DWORD
dwQueryFlags
,
LPVOID
pBuffer
,
DWORD
cbBuffer
,
DWORD
*
pcbBuf
,
QUERYOPTION
QueryOption
,
DWORD
dwQueryFlags
,
LPVOID
pBuffer
,
DWORD
cbBuffer
,
DWORD
*
pcbBuf
,
DWORD
dwReserved
)
DWORD
dwReserved
)
{
{
ITSProtocol
*
This
=
PROTINFO_THIS
(
iface
);
ITSProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
FIXME
(
"(%p)->(%s %08x %08x %p %d %p %d)
\n
"
,
This
,
debugstr_w
(
pwzUrl
),
QueryOption
,
FIXME
(
"(%p)->(%s %08x %08x %p %d %p %d)
\n
"
,
This
,
debugstr_w
(
pwzUrl
),
QueryOption
,
dwQueryFlags
,
pBuffer
,
cbBuffer
,
pcbBuf
,
dwReserved
);
dwQueryFlags
,
pBuffer
,
cbBuffer
,
pcbBuf
,
dwReserved
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
#undef PROTINFO_THIS
static
const
IInternetProtocolInfoVtbl
ITSProtocolInfoVtbl
=
{
static
const
IInternetProtocolInfoVtbl
ITSProtocolInfoVtbl
=
{
ITSProtocolInfo_QueryInterface
,
ITSProtocolInfo_QueryInterface
,
ITSProtocolInfo_AddRef
,
ITSProtocolInfo_AddRef
,
...
@@ -478,11 +477,11 @@ HRESULT ITSProtocol_create(IUnknown *pUnkOuter, LPVOID *ppobj)
...
@@ -478,11 +477,11 @@ HRESULT ITSProtocol_create(IUnknown *pUnkOuter, LPVOID *ppobj)
ret
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
ITSProtocol
));
ret
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
ITSProtocol
));
ret
->
lpInternetProtocol
Vtbl
=
&
ITSProtocolVtbl
;
ret
->
IInternetProtocol_iface
.
lp
Vtbl
=
&
ITSProtocolVtbl
;
ret
->
lpInternetProtocolInfo
Vtbl
=
&
ITSProtocolInfoVtbl
;
ret
->
IInternetProtocolInfo_iface
.
lp
Vtbl
=
&
ITSProtocolInfoVtbl
;
ret
->
ref
=
1
;
ret
->
ref
=
1
;
*
ppobj
=
PROTOCOL
(
ret
)
;
*
ppobj
=
&
ret
->
IInternetProtocol_iface
;
return
S_OK
;
return
S_OK
;
}
}
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