itss: Remove some superfluous pointer casts.
This commit is contained in:
parent
4eaaa913f8
commit
07a7c1f822
|
@ -363,7 +363,7 @@ static HRESULT ITSS_create(IUnknown *pUnkOuter, LPVOID *ppObj)
|
|||
its->ref = 1;
|
||||
|
||||
TRACE("-> %p\n", its);
|
||||
*ppObj = (LPVOID) its;
|
||||
*ppObj = its;
|
||||
|
||||
ITSS_LockModule();
|
||||
return S_OK;
|
||||
|
|
|
@ -473,7 +473,7 @@ HRESULT ITS_IParseDisplayName_create(IUnknown *pUnkOuter, LPVOID *ppObj)
|
|||
its->ref = 1;
|
||||
|
||||
TRACE("-> %p\n", its);
|
||||
*ppObj = (LPVOID) its;
|
||||
*ppObj = its;
|
||||
|
||||
ITSS_LockModule();
|
||||
return S_OK;
|
||||
|
|
|
@ -47,7 +47,7 @@ typedef struct {
|
|||
} ITSProtocol;
|
||||
|
||||
#define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
|
||||
#define PROTINFO(x) ((IInternetProtocolInfo*) &(x)->lpInternetProtocolInfoVtbl)
|
||||
#define PROTINFO(x) (&(x)->lpInternetProtocolInfoVtbl)
|
||||
|
||||
static void release_chm(ITSProtocol *This)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue