itss: Remove some superfluous pointer casts.

This commit is contained in:
Michael Stefaniuc 2009-01-26 11:01:19 +01:00 committed by Alexandre Julliard
parent 4eaaa913f8
commit 07a7c1f822
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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)
{