gdiplus: Implement GdipSetPathGradientBlend, with tests.
[wine/multimedia.git] / dlls / winhttp / main.c
blob5348d4d4677555b07bc424ba9f2dff8c5909e187
1 /*
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
19 #define COBJMACROS
20 #include "config.h"
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "objbase.h"
26 #include "rpcproxy.h"
27 #include "httprequest.h"
28 #include "winhttp.h"
30 #include "wine/debug.h"
31 #include "winhttp_private.h"
33 static HINSTANCE instance;
35 WINE_DEFAULT_DEBUG_CHANNEL(winhttp);
37 /******************************************************************
38 * DllMain (winhttp.@)
40 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
42 switch(fdwReason)
44 case DLL_PROCESS_ATTACH:
45 instance = hInstDLL;
46 DisableThreadLibraryCalls(hInstDLL);
47 break;
48 case DLL_PROCESS_DETACH:
49 netconn_unload();
50 break;
52 return TRUE;
55 typedef HRESULT (*fnCreateInstance)( IUnknown *outer, void **obj );
57 struct winhttp_cf
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(
69 IClassFactory *iface,
70 REFIID riid,
71 void **obj )
73 if (IsEqualGUID( riid, &IID_IUnknown ) ||
74 IsEqualGUID( riid, &IID_IClassFactory ))
76 IClassFactory_AddRef( iface );
77 *obj = iface;
78 return S_OK;
80 FIXME("interface %s not implemented\n", debugstr_guid(riid));
81 return E_NOINTERFACE;
84 static ULONG WINAPI requestcf_AddRef(
85 IClassFactory *iface )
87 return 2;
90 static ULONG WINAPI requestcf_Release(
91 IClassFactory *iface )
93 return 1;
96 static HRESULT WINAPI requestcf_CreateInstance(
97 IClassFactory *iface,
98 LPUNKNOWN outer,
99 REFIID riid,
100 void **obj )
102 struct winhttp_cf *cf = impl_from_IClassFactory( iface );
103 IUnknown *unknown;
104 HRESULT hr;
106 TRACE("%p, %s, %p\n", outer, debugstr_guid(riid), obj);
108 *obj = NULL;
109 if (outer)
110 return CLASS_E_NOAGGREGATION;
112 hr = cf->pfnCreateInstance( outer, (void **)&unknown );
113 if (FAILED(hr))
114 return hr;
116 hr = IUnknown_QueryInterface( unknown, riid, obj );
117 if (FAILED(hr))
118 return hr;
120 IUnknown_Release( unknown );
121 return hr;
124 static HRESULT WINAPI requestcf_LockServer(
125 IClassFactory *iface,
126 BOOL dolock )
128 FIXME("%p, %d\n", iface, dolock);
129 return S_OK;
132 static const struct IClassFactoryVtbl winhttp_cf_vtbl =
134 requestcf_QueryInterface,
135 requestcf_AddRef,
136 requestcf_Release,
137 requestcf_CreateInstance,
138 requestcf_LockServer
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)
165 return S_FALSE;
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 );