2 * Copyright 2007 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "httprequest.h"
30 #include "wine/debug.h"
31 #include "winhttp_private.h"
33 static HINSTANCE instance;
35 WINE_DEFAULT_DEBUG_CHANNEL(winhttp);
37 /******************************************************************
40 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
44 case DLL_PROCESS_ATTACH:
46 DisableThreadLibraryCalls(hInstDLL);
48 case DLL_PROCESS_DETACH:
55 typedef HRESULT (*fnCreateInstance)( IUnknown *outer, void **obj );
59 IClassFactory IClassFactory_iface;
60 fnCreateInstance pfnCreateInstance;
63 static inline struct winhttp_cf *impl_from_IClassFactory( IClassFactory *iface )
65 return CONTAINING_RECORD( iface, struct winhttp_cf, IClassFactory_iface );
68 static HRESULT WINAPI requestcf_QueryInterface(
73 if (IsEqualGUID( riid, &IID_IUnknown ) ||
74 IsEqualGUID( riid, &IID_IClassFactory ))
76 IClassFactory_AddRef( iface );
80 FIXME("interface %s not implemented\n", debugstr_guid(riid));
84 static ULONG WINAPI requestcf_AddRef(
85 IClassFactory *iface )
90 static ULONG WINAPI requestcf_Release(
91 IClassFactory *iface )
96 static HRESULT WINAPI requestcf_CreateInstance(
102 struct winhttp_cf *cf = impl_from_IClassFactory( iface );
106 TRACE("%p, %s, %p\n", outer, debugstr_guid(riid), obj);
110 return CLASS_E_NOAGGREGATION;
112 hr = cf->pfnCreateInstance( outer, (void **)&unknown );
116 hr = IUnknown_QueryInterface( unknown, riid, obj );
120 IUnknown_Release( unknown );
124 static HRESULT WINAPI requestcf_LockServer(
125 IClassFactory *iface,
128 FIXME("%p, %d\n", iface, dolock);
132 static const struct IClassFactoryVtbl winhttp_cf_vtbl =
134 requestcf_QueryInterface,
137 requestcf_CreateInstance,
141 static struct winhttp_cf request_cf = { { &winhttp_cf_vtbl }, WinHttpRequest_create };
143 /******************************************************************
144 * DllGetClassObject (winhttp.@)
146 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
148 IClassFactory *cf = NULL;
150 TRACE("%s, %s, %p\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
152 if (IsEqualGUID( rclsid, &CLSID_WinHttpRequest ))
154 cf = &request_cf.IClassFactory_iface;
156 if (!cf) return CLASS_E_CLASSNOTAVAILABLE;
157 return IClassFactory_QueryInterface( cf, riid, ppv );
160 /******************************************************************
161 * DllCanUnloadNow (winhttp.@)
163 HRESULT WINAPI DllCanUnloadNow(void)
168 /***********************************************************************
169 * DllRegisterServer (winhttp.@)
171 HRESULT WINAPI DllRegisterServer(void)
173 return __wine_register_resources( instance );
176 /***********************************************************************
177 * DllUnregisterServer (winhttp.@)
179 HRESULT WINAPI DllUnregisterServer(void)
181 return __wine_unregister_resources( instance );