xmllite/writer: Implement WriteEndDocument().
[wine.git] / dlls / xaudio2_7 / xaudio_dll.c
blobc8b79040207773a5ef1155161782a0a4247cbc92
1 /*
2 * Copyright (c) 2015 Mark Harmstone
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 <stdarg.h>
21 #define COBJMACROS
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
27 #include "ole2.h"
28 #include "rpcproxy.h"
30 #include "wine/debug.h"
31 #include <propsys.h>
32 #include "initguid.h"
33 #include "xaudio2.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(xaudio2);
37 static HINSTANCE instance;
39 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
41 TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
43 switch (fdwReason)
45 case DLL_WINE_PREATTACH:
46 return FALSE; /* prefer native version */
47 case DLL_PROCESS_ATTACH:
48 instance = hinstDLL;
49 DisableThreadLibraryCalls( hinstDLL );
50 break;
52 return TRUE;
55 HRESULT WINAPI DllCanUnloadNow(void)
57 return S_FALSE;
60 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
62 TRACE("(%s, %s, %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
64 if (ppv == NULL) {
65 WARN("invalid parameter\n");
66 return E_INVALIDARG;
69 *ppv = NULL;
71 WARN("(%s, %s, %p): no class found.\n", debugstr_guid(rclsid),
72 debugstr_guid(riid), ppv);
73 return CLASS_E_CLASSNOTAVAILABLE;
76 HRESULT WINAPI DllRegisterServer(void)
78 TRACE("\n");
79 return __wine_register_resources( instance );
82 HRESULT WINAPI DllUnregisterServer(void)
84 TRACE("\n");
85 return __wine_unregister_resources( instance );