xaudio2: Add stub interface for FXEQ.
[wine.git] / dlls / xapofx1_2 / main.c
blob6eeed2292b1d79e2b4be4c143eac715af2004c34
1 /*
2 * Copyright 2015 Andrew Eikum for CodeWeavers
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
19 #include "config.h"
20 #include <stdarg.h>
22 #include "initguid.h"
23 #include "windef.h"
24 #include "winbase.h"
25 #include "compobj.h"
26 #include "xapofx.h"
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(xapofx);
31 /*****************************************************
32 * DllMain
34 BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
36 TRACE("(%p, %d, %p)\n", hinst, reason, reserved);
38 switch(reason)
40 case DLL_WINE_PREATTACH:
41 return FALSE; /* prefer native version */
43 case DLL_PROCESS_ATTACH:
44 DisableThreadLibraryCalls(hinst);
45 break;
47 return TRUE;
50 HRESULT CDECL CreateFX(REFCLSID clsid, IUnknown **out)
52 const GUID *class = clsid;
54 TRACE("%s %p\n", debugstr_guid(clsid), out);
56 if(IsEqualGUID(clsid, &CLSID_FXReverb27) ||
57 IsEqualGUID(clsid, &CLSID_FXReverb))
58 class = &CLSID_WINE_FXReverb12;
59 else if(IsEqualGUID(clsid, &CLSID_FXEQ27) ||
60 IsEqualGUID(clsid, &CLSID_FXEQ))
61 class = &CLSID_WINE_FXEQ12;
63 return CoCreateInstance(class, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown, (void**)out);