2 * Copyright 2002 Michael Günnewig
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
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(avifile
);
37 #include "avifile_private.h"
39 HMODULE AVIFILE_hModule
= NULL
;
41 static BOOL AVIFILE_bLocked
;
42 static UINT AVIFILE_uUseCount
;
44 static HRESULT WINAPI
IClassFactory_fnQueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
);
45 static ULONG WINAPI
IClassFactory_fnAddRef(LPCLASSFACTORY iface
);
46 static ULONG WINAPI
IClassFactory_fnRelease(LPCLASSFACTORY iface
);
47 static HRESULT WINAPI
IClassFactory_fnCreateInstance(LPCLASSFACTORY iface
,LPUNKNOWN pOuter
,REFIID riid
,LPVOID
*ppobj
);
48 static HRESULT WINAPI
IClassFactory_fnLockServer(LPCLASSFACTORY iface
,BOOL dolock
);
50 static const IClassFactoryVtbl iclassfact
= {
51 IClassFactory_fnQueryInterface
,
52 IClassFactory_fnAddRef
,
53 IClassFactory_fnRelease
,
54 IClassFactory_fnCreateInstance
,
55 IClassFactory_fnLockServer
61 const IClassFactoryVtbl
*lpVtbl
;
67 static HRESULT
AVIFILE_CreateClassFactory(const CLSID
*pclsid
, const IID
*riid
,
70 IClassFactoryImpl
*pClassFactory
= NULL
;
75 pClassFactory
= HeapAlloc(GetProcessHeap(), 0, sizeof(*pClassFactory
));
76 if (pClassFactory
== NULL
)
79 pClassFactory
->lpVtbl
= &iclassfact
;
80 pClassFactory
->dwRef
= 0;
81 memcpy(&pClassFactory
->clsid
, pclsid
, sizeof(pClassFactory
->clsid
));
83 hr
= IClassFactory_QueryInterface((IClassFactory
*)pClassFactory
, riid
, ppv
);
85 HeapFree(GetProcessHeap(), 0, pClassFactory
);
92 static HRESULT WINAPI
IClassFactory_fnQueryInterface(LPCLASSFACTORY iface
,
93 REFIID riid
,LPVOID
*ppobj
)
95 TRACE("(%p,%p,%p)\n", iface
, riid
, ppobj
);
97 if ((IsEqualGUID(&IID_IUnknown
, riid
)) ||
98 (IsEqualGUID(&IID_IClassFactory
, riid
))) {
100 IClassFactory_AddRef(iface
);
104 return E_NOINTERFACE
;
107 static ULONG WINAPI
IClassFactory_fnAddRef(LPCLASSFACTORY iface
)
109 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
111 TRACE("(%p)\n", iface
);
113 return ++(This
->dwRef
);
116 static ULONG WINAPI
IClassFactory_fnRelease(LPCLASSFACTORY iface
)
118 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
120 TRACE("(%p)\n", iface
);
121 if ((--(This
->dwRef
)) > 0)
124 HeapFree(GetProcessHeap(), 0, This
);
129 static HRESULT WINAPI
IClassFactory_fnCreateInstance(LPCLASSFACTORY iface
,
131 REFIID riid
,LPVOID
*ppobj
)
133 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
135 TRACE("(%p,%p,%s,%p)\n", iface
, pOuter
, debugstr_guid(riid
),
138 if (ppobj
== NULL
|| pOuter
!= NULL
)
142 if (IsEqualGUID(&CLSID_AVIFile
, &This
->clsid
))
143 return AVIFILE_CreateAVIFile(riid
,ppobj
);
144 if (IsEqualGUID(&CLSID_ICMStream
, &This
->clsid
))
145 return AVIFILE_CreateICMStream(riid
,ppobj
);
146 if (IsEqualGUID(&CLSID_WAVFile
, &This
->clsid
))
147 return AVIFILE_CreateWAVFile(riid
,ppobj
);
148 if (IsEqualGUID(&CLSID_ACMStream
, &This
->clsid
))
149 return AVIFILE_CreateACMStream(riid
,ppobj
);
151 return E_NOINTERFACE
;
154 static HRESULT WINAPI
IClassFactory_fnLockServer(LPCLASSFACTORY iface
,BOOL dolock
)
156 TRACE("(%p,%d)\n",iface
,dolock
);
158 AVIFILE_bLocked
= dolock
;
163 LPCWSTR
AVIFILE_BasenameW(LPCWSTR szPath
)
165 #define SLASH(w) ((w) == '/' || (w) == '\\')
169 for (szCur
= szPath
+ lstrlenW(szPath
);
170 szCur
> szPath
&& !SLASH(*szCur
) && *szCur
!= ':';)
181 /***********************************************************************
182 * DllGetClassObject (AVIFIL32.@)
184 HRESULT WINAPI
DllGetClassObject(REFCLSID pclsid
, REFIID piid
, LPVOID
*ppv
)
186 TRACE("(%s,%s,%p)\n", debugstr_guid(pclsid
), debugstr_guid(piid
), ppv
);
188 if (pclsid
== NULL
|| piid
== NULL
|| ppv
== NULL
)
191 return AVIFILE_CreateClassFactory(pclsid
,piid
,ppv
);
194 /*****************************************************************************
195 * DllCanUnloadNow (AVIFIL32.@)
197 HRESULT WINAPI
DllCanUnloadNow(void)
199 return ((AVIFILE_bLocked
|| AVIFILE_uUseCount
) ? S_FALSE
: S_OK
);
202 /*****************************************************************************
203 * DllMain [AVIFIL32.init]
205 BOOL WINAPI
DllMain(HINSTANCE hInstDll
, DWORD fdwReason
, LPVOID lpvReserved
)
207 TRACE("(%p,%d,%p)\n", hInstDll
, fdwReason
, lpvReserved
);
210 case DLL_PROCESS_ATTACH
:
211 DisableThreadLibraryCalls(hInstDll
);
212 AVIFILE_hModule
= (HMODULE
)hInstDll
;
214 case DLL_PROCESS_DETACH
: