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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
36 #include "amstream_private.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(amstream
);
43 static DWORD dll_ref
= 0;
45 /* For the moment, do nothing here. */
46 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
49 case DLL_PROCESS_ATTACH
:
50 DisableThreadLibraryCalls(hInstDLL
);
52 case DLL_PROCESS_DETACH
:
58 /******************************************************************************
59 * Multimedia Streams ClassFactory
62 IClassFactory ITF_IClassFactory
;
65 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
68 struct object_creation_info
71 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
74 static const struct object_creation_info object_creation
[] =
76 { &CLSID_AMMultiMediaStream
, AM_create
},
77 { &CLSID_AMDirectDrawStream
, AM_create
},
78 { &CLSID_MediaStreamFilter
, MediaStreamFilter_create
}
82 AMCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
)
84 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
86 if (IsEqualGUID(riid
, &IID_IUnknown
)
87 || IsEqualGUID(riid
, &IID_IClassFactory
))
89 IClassFactory_AddRef(iface
);
94 WARN("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppobj
);
98 static ULONG WINAPI
AMCF_AddRef(LPCLASSFACTORY iface
)
100 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
101 return InterlockedIncrement(&This
->ref
);
104 static ULONG WINAPI
AMCF_Release(LPCLASSFACTORY iface
)
106 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
108 ULONG ref
= InterlockedDecrement(&This
->ref
);
111 HeapFree(GetProcessHeap(), 0, This
);
117 static HRESULT WINAPI
AMCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
,
118 REFIID riid
, LPVOID
*ppobj
)
120 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
124 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
127 hres
= This
->pfnCreateInstance(pOuter
, (LPVOID
*) &punk
);
128 if (SUCCEEDED(hres
)) {
129 hres
= IUnknown_QueryInterface(punk
, riid
, ppobj
);
130 IUnknown_Release(punk
);
135 static HRESULT WINAPI
AMCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
)
137 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
138 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
142 static const IClassFactoryVtbl DSCF_Vtbl
=
151 /*******************************************************************************
152 * DllGetClassObject [AMSTREAM.@]
153 * Retrieves class object from a DLL object
156 * Docs say returns STDAPI
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
165 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
168 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
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
))
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
->ITF_IClassFactory
.lpVtbl
= &DSCF_Vtbl
;
197 factory
->pfnCreateInstance
= object_creation
[i
].pfnCreateInstance
;
199 *ppv
= &(factory
->ITF_IClassFactory
);
203 /***********************************************************************
204 * DllCanUnloadNow (AMSTREAM.@)
206 HRESULT WINAPI
DllCanUnloadNow(void)
208 return dll_ref
!= 0 ? S_FALSE
: S_OK
;