d2d1: Implement d2d_d3d_render_target_CreateBitmap().
[wine/multimedia.git] / dlls / amstream / main.c
blob9479053d5a9e4bc5c8a453f2342d607f485f8dfb
1 /*
2 * MultiMedia Streams Base Functions (AMSTREAM.DLL)
4 * Copyright 2004 Christian Costa
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
22 #include <string.h>
24 #define COBJMACROS
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "winerror.h"
31 #include "ole2.h"
32 #include "rpcproxy.h"
34 #include "amstream_private.h"
35 #include "amstream.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(amstream);
41 static HINSTANCE instance;
42 static DWORD dll_ref = 0;
44 /* For the moment, do nothing here. */
45 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
47 switch(fdwReason) {
48 case DLL_PROCESS_ATTACH:
49 instance = hInstDLL;
50 DisableThreadLibraryCalls(hInstDLL);
51 break;
53 return TRUE;
56 /******************************************************************************
57 * Multimedia Streams ClassFactory
59 typedef struct {
60 IClassFactory IClassFactory_iface;
61 LONG ref;
62 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
63 } IClassFactoryImpl;
65 static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
67 return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
70 struct object_creation_info
72 const CLSID *clsid;
73 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
76 static const struct object_creation_info object_creation[] =
78 { &CLSID_AMMultiMediaStream, AM_create },
79 { &CLSID_AMDirectDrawStream, AM_create },
80 { &CLSID_AMAudioData, AMAudioData_create },
81 { &CLSID_MediaStreamFilter, MediaStreamFilter_create }
84 static HRESULT WINAPI AMCF_QueryInterface(IClassFactory *iface, REFIID riid, void **ppobj)
86 if (IsEqualGUID(riid, &IID_IUnknown)
87 || IsEqualGUID(riid, &IID_IClassFactory))
89 IClassFactory_AddRef(iface);
90 *ppobj = iface;
91 return S_OK;
94 *ppobj = NULL;
95 WARN("(%p)->(%s,%p), not found\n", iface, debugstr_guid(riid), ppobj);
96 return E_NOINTERFACE;
99 static ULONG WINAPI AMCF_AddRef(IClassFactory *iface)
101 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
102 return InterlockedIncrement(&This->ref);
105 static ULONG WINAPI AMCF_Release(IClassFactory *iface)
107 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
108 ULONG ref = InterlockedDecrement(&This->ref);
110 if (ref == 0)
111 HeapFree(GetProcessHeap(), 0, This);
113 return ref;
117 static HRESULT WINAPI AMCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
118 REFIID riid, void **ppobj)
120 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
121 HRESULT hres;
122 LPUNKNOWN punk;
124 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
126 *ppobj = NULL;
127 hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
128 if (SUCCEEDED(hres)) {
129 hres = IUnknown_QueryInterface(punk, riid, ppobj);
130 IUnknown_Release(punk);
132 return hres;
135 static HRESULT WINAPI AMCF_LockServer(IClassFactory *iface, BOOL dolock)
137 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
138 FIXME("(%p)->(%d),stub!\n",This,dolock);
139 return S_OK;
142 static const IClassFactoryVtbl DSCF_Vtbl =
144 AMCF_QueryInterface,
145 AMCF_AddRef,
146 AMCF_Release,
147 AMCF_CreateInstance,
148 AMCF_LockServer
151 /*******************************************************************************
152 * DllGetClassObject [AMSTREAM.@]
153 * Retrieves class object from a DLL object
155 * NOTES
156 * Docs say returns STDAPI
158 * PARAMS
159 * rclsid [I] CLSID for the class object
160 * riid [I] Reference to identifier of interface for class object
161 * ppv [O] Address of variable to receive interface pointer for riid
163 * RETURNS
164 * Success: S_OK
165 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
166 * E_UNEXPECTED
168 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
170 unsigned int i;
171 IClassFactoryImpl *factory;
173 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
175 if ( !IsEqualGUID( &IID_IClassFactory, riid )
176 && ! IsEqualGUID( &IID_IUnknown, riid) )
177 return E_NOINTERFACE;
179 for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
181 if (IsEqualGUID(object_creation[i].clsid, rclsid))
182 break;
185 if (i == sizeof(object_creation)/sizeof(object_creation[0]))
187 FIXME("%s: no class found.\n", debugstr_guid(rclsid));
188 return CLASS_E_CLASSNOTAVAILABLE;
191 factory = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
192 if (factory == NULL) return E_OUTOFMEMORY;
194 factory->IClassFactory_iface.lpVtbl = &DSCF_Vtbl;
195 factory->ref = 1;
197 factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
199 *ppv = &factory->IClassFactory_iface;
200 return S_OK;
203 /***********************************************************************
204 * DllCanUnloadNow (AMSTREAM.@)
206 HRESULT WINAPI DllCanUnloadNow(void)
208 return dll_ref != 0 ? S_FALSE : S_OK;
211 /***********************************************************************
212 * DllRegisterServer (AMSTREAM.@)
214 HRESULT WINAPI DllRegisterServer(void)
216 return __wine_register_resources( instance );
219 /***********************************************************************
220 * DllUnregisterServer (AMSTREAM.@)
222 HRESULT WINAPI DllUnregisterServer(void)
224 return __wine_unregister_resources( instance );