1 /* DirectShow Editing Services (qedit.dll)
3 * Copyright 2008 Google (Lei Zhang)
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "qedit_private.h"
21 #include "wine/debug.h"
23 WINE_DEFAULT_DEBUG_CHANNEL(qedit);
25 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
28 case DLL_PROCESS_ATTACH:
29 DisableThreadLibraryCalls(hInstDLL);
31 case DLL_PROCESS_DETACH:
37 /******************************************************************************
38 * DirectShow ClassFactory
41 IClassFactory ITF_IClassFactory;
44 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
47 struct object_creation_info
50 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
53 static const struct object_creation_info object_creation[] =
55 { &CLSID_MediaDet, MediaDet_create },
59 DSCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj)
61 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
63 if (IsEqualGUID(riid, &IID_IUnknown)
64 || IsEqualGUID(riid, &IID_IClassFactory))
66 IClassFactory_AddRef(iface);
72 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
76 static ULONG WINAPI DSCF_AddRef(LPCLASSFACTORY iface)
78 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
79 return InterlockedIncrement(&This->ref);
82 static ULONG WINAPI DSCF_Release(LPCLASSFACTORY iface)
84 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
86 ULONG ref = InterlockedDecrement(&This->ref);
94 static HRESULT WINAPI DSCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
96 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
100 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
103 hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
104 if (SUCCEEDED(hres)) {
105 hres = IUnknown_QueryInterface(punk, riid, ppobj);
106 IUnknown_Release(punk);
111 static HRESULT WINAPI DSCF_LockServer(LPCLASSFACTORY iface, BOOL dolock)
113 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
114 FIXME("(%p)->(%d),stub!\n",This,dolock);
118 static const IClassFactoryVtbl DSCF_Vtbl =
128 /***********************************************************************
129 * DllCanUnloadNow (QEDIT.@)
131 HRESULT WINAPI DllCanUnloadNow(void)
136 /*******************************************************************************
137 * DllGetClassObject [QEDIT.@]
138 * Retrieves class object from a DLL object
141 * rclsid [I] CLSID for the class object
142 * riid [I] Reference to identifier of interface for class object
143 * ppv [O] Address of variable to receive interface pointer for riid
147 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
148 * E_UNEXPECTED, E_NOINTERFACE
151 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
154 IClassFactoryImpl *factory;
156 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
158 if ( !IsEqualGUID( &IID_IClassFactory, riid )
159 && ! IsEqualGUID( &IID_IUnknown, riid) )
160 return E_NOINTERFACE;
162 for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
164 if (IsEqualGUID(object_creation[i].clsid, rclsid))
168 if (i == sizeof(object_creation)/sizeof(object_creation[0]))
170 FIXME("%s: no class found.\n", debugstr_guid(rclsid));
171 return CLASS_E_CLASSNOTAVAILABLE;
174 factory = CoTaskMemAlloc(sizeof(*factory));
175 if (factory == NULL) return E_OUTOFMEMORY;
177 factory->ITF_IClassFactory.lpVtbl = &DSCF_Vtbl;
180 factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
182 *ppv = &(factory->ITF_IClassFactory);