Added some defines for Crypt{Get/Set}KeyParam.
[wine.git] / dlls / amstream / main.c
blob1c557da928cd0c25e706eecb8e182f23bce2790b
1 /*
2 * MultiMedia Streams Base Functions (AMSTREAM.DLL)
4 * Copyright 2004 Christian Costa
6 * This file contains the (internal) driver registration functions,
7 * driver enumeration APIs and DirectDraw creation functions.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #define COM_NO_WINDOWS_H
26 #include <stdarg.h>
27 #include <string.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winuser.h"
32 #include "winreg.h"
33 #include "winerror.h"
35 #include "ole2.h"
36 #include "uuids.h"
38 #include "amstream_private.h"
39 #include "amstream.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(amstream);
45 static DWORD dll_ref = 0;
47 /* For the moment, do nothing here. */
48 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
50 switch(fdwReason) {
51 case DLL_PROCESS_ATTACH:
52 DisableThreadLibraryCalls(hInstDLL);
53 break;
54 case DLL_PROCESS_DETACH:
55 break;
57 return TRUE;
60 /******************************************************************************
61 * Multimedia Streams ClassFactory
63 typedef struct {
64 IClassFactory ITF_IClassFactory;
66 DWORD ref;
67 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
68 } IClassFactoryImpl;
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 },
81 static HRESULT WINAPI
82 AMCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj)
84 ICOM_THIS(IClassFactoryImpl,iface);
86 if (IsEqualGUID(riid, &IID_IUnknown)
87 || IsEqualGUID(riid, &IID_IClassFactory))
89 IClassFactory_AddRef(iface);
90 *ppobj = This;
91 return S_OK;
94 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
95 return E_NOINTERFACE;
98 static ULONG WINAPI AMCF_AddRef(LPCLASSFACTORY iface) {
99 ICOM_THIS(IClassFactoryImpl,iface);
100 return ++(This->ref);
103 static ULONG WINAPI AMCF_Release(LPCLASSFACTORY iface) {
104 ICOM_THIS(IClassFactoryImpl,iface);
106 ULONG ref = --This->ref;
108 if (ref == 0)
109 HeapFree(GetProcessHeap(), 0, This);
111 return ref;
115 static HRESULT WINAPI AMCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter,
116 REFIID riid, LPVOID *ppobj) {
117 ICOM_THIS(IClassFactoryImpl,iface);
118 HRESULT hres;
119 LPUNKNOWN punk;
121 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
123 hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
124 if (FAILED(hres)) {
125 *ppobj = NULL;
126 return hres;
128 hres = IUnknown_QueryInterface(punk, riid, ppobj);
129 if (FAILED(hres)) {
130 *ppobj = NULL;
131 return hres;
133 IUnknown_Release(punk);
134 return hres;
137 static HRESULT WINAPI AMCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
138 ICOM_THIS(IClassFactoryImpl,iface);
139 FIXME("(%p)->(%d),stub!\n",This,dolock);
140 return S_OK;
143 static IClassFactoryVtbl DSCF_Vtbl =
145 AMCF_QueryInterface,
146 AMCF_AddRef,
147 AMCF_Release,
148 AMCF_CreateInstance,
149 AMCF_LockServer
152 /*******************************************************************************
153 * DllGetClassObject [AMSTREAM.@]
154 * Retrieves class object from a DLL object
156 * NOTES
157 * Docs say returns STDAPI
159 * PARAMS
160 * rclsid [I] CLSID for the class object
161 * riid [I] Reference to identifier of interface for class object
162 * ppv [O] Address of variable to receive interface pointer for riid
164 * RETURNS
165 * Success: S_OK
166 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
167 * E_UNEXPECTED
169 DWORD WINAPI AMSTREAM_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
171 int i;
172 IClassFactoryImpl *factory;
174 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
176 if ( !IsEqualGUID( &IID_IClassFactory, riid )
177 && ! IsEqualGUID( &IID_IUnknown, riid) )
178 return E_NOINTERFACE;
180 for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
182 if (IsEqualGUID(object_creation[i].clsid, rclsid))
183 break;
186 if (i == sizeof(object_creation)/sizeof(object_creation[0]))
188 FIXME("%s: no class found.\n", debugstr_guid(rclsid));
189 return CLASS_E_CLASSNOTAVAILABLE;
192 factory = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
193 if (factory == NULL) return E_OUTOFMEMORY;
195 factory->ITF_IClassFactory.lpVtbl = &DSCF_Vtbl;
196 factory->ref = 1;
198 factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
200 *ppv = &(factory->ITF_IClassFactory);
201 return S_OK;
204 /***********************************************************************
205 * DllCanUnloadNow (AMSTREAM.@)
207 HRESULT WINAPI AMSTREAM_DllCanUnloadNow()
209 return dll_ref != 0 ? S_FALSE : S_OK;