mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
winhttp: Remove unused IUnknown *outer parameter from object constructor.
This commit is contained in:
parent
5cf3c1f4a6
commit
f8d79c83b4
3 changed files with 5 additions and 8 deletions
|
@ -53,7 +53,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
typedef HRESULT (*fnCreateInstance)( IUnknown *outer, void **obj );
|
||||
typedef HRESULT (*fnCreateInstance)( void **obj );
|
||||
|
||||
struct winhttp_cf
|
||||
{
|
||||
|
@ -110,14 +110,11 @@ static HRESULT WINAPI requestcf_CreateInstance(
|
|||
if (outer)
|
||||
return CLASS_E_NOAGGREGATION;
|
||||
|
||||
hr = cf->pfnCreateInstance( outer, (void **)&unknown );
|
||||
hr = cf->pfnCreateInstance( (void **)&unknown );
|
||||
if (FAILED(hr))
|
||||
return hr;
|
||||
|
||||
hr = IUnknown_QueryInterface( unknown, riid, obj );
|
||||
if (FAILED(hr))
|
||||
return hr;
|
||||
|
||||
IUnknown_Release( unknown );
|
||||
return hr;
|
||||
}
|
||||
|
|
|
@ -3814,11 +3814,11 @@ static const struct IWinHttpRequestVtbl winhttp_request_vtbl =
|
|||
winhttp_request_SetAutoLogonPolicy
|
||||
};
|
||||
|
||||
HRESULT WinHttpRequest_create( IUnknown *unknown, void **obj )
|
||||
HRESULT WinHttpRequest_create( void **obj )
|
||||
{
|
||||
struct winhttp_request *request;
|
||||
|
||||
TRACE("%p, %p\n", unknown, obj);
|
||||
TRACE("%p\n", obj);
|
||||
|
||||
if (!(request = heap_alloc( sizeof(*request) ))) return E_OUTOFMEMORY;
|
||||
request->IWinHttpRequest_iface.lpVtbl = &winhttp_request_vtbl;
|
||||
|
|
|
@ -282,7 +282,7 @@ void delete_domain( domain_t * ) DECLSPEC_HIDDEN;
|
|||
BOOL set_server_for_hostname( connect_t *, LPCWSTR, INTERNET_PORT ) DECLSPEC_HIDDEN;
|
||||
void destroy_authinfo( struct authinfo * ) DECLSPEC_HIDDEN;
|
||||
|
||||
extern HRESULT WinHttpRequest_create( IUnknown *, void ** ) DECLSPEC_HIDDEN;
|
||||
extern HRESULT WinHttpRequest_create( void ** ) DECLSPEC_HIDDEN;
|
||||
|
||||
static inline const char *debugstr_variant( const VARIANT *v )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue