server: Do not accept sizeof(struct WS_sockaddr_in6_old).
[wine.git] / dlls / xaudio2_7 / x3daudio.c
blobe0a0280c3cd614bdbaf9ff363081a8e8521516b6
1 /*
2 * Copyright (c) 2016 Andrew Eikum for CodeWeavers
3 * Copyright (c) 2018 Ethan Lee for CodeWeavers
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "config.h"
22 #include <stdarg.h>
24 #include "windef.h"
25 #include "winbase.h"
26 #include "x3daudio.h"
28 #include "wine/debug.h"
30 #include <F3DAudio.h>
32 #if XAUDIO2_VER >= 8 || defined X3DAUDIO1_VER
33 WINE_DEFAULT_DEBUG_CHANNEL(xaudio2);
34 #endif
36 #if XAUDIO2_VER >= 8
37 HRESULT CDECL X3DAudioInitialize(UINT32 chanmask, float speedofsound,
38 X3DAUDIO_HANDLE handle)
40 TRACE("0x%x, %f, %p\n", chanmask, speedofsound, handle);
41 #ifdef HAVE_F3DAUDIOINITIALIZE8
42 return F3DAudioInitialize8(chanmask, speedofsound, handle);
43 #else
44 F3DAudioInitialize(chanmask, speedofsound, handle);
45 return S_OK;
46 #endif
48 #endif /* XAUDIO2_VER >= 8 */
50 #ifdef X3DAUDIO1_VER
51 #if X3DAUDIO1_VER <= 2
52 void WINAPI LEGACY_X3DAudioInitialize(UINT32 chanmask, float speedofsound,
53 X3DAUDIO_HANDLE handle)
54 #else
55 void CDECL LEGACY_X3DAudioInitialize(UINT32 chanmask, float speedofsound,
56 X3DAUDIO_HANDLE handle)
57 #endif
59 TRACE("0x%x, %f, %p\n", chanmask, speedofsound, handle);
60 F3DAudioInitialize(chanmask, speedofsound, handle);
62 #endif /* X3DAUDIO1_VER */
64 #if XAUDIO2_VER >= 8 || defined X3DAUDIO1_VER
65 #if defined(X3DAUDIO1_VER) && X3DAUDIO1_VER <= 2
66 void WINAPI LEGACY_X3DAudioCalculate(const X3DAUDIO_HANDLE handle,
67 const X3DAUDIO_LISTENER *listener, const X3DAUDIO_EMITTER *emitter,
68 UINT32 flags, X3DAUDIO_DSP_SETTINGS *out)
69 #else
70 void CDECL X3DAudioCalculate(const X3DAUDIO_HANDLE handle,
71 const X3DAUDIO_LISTENER *listener, const X3DAUDIO_EMITTER *emitter,
72 UINT32 flags, X3DAUDIO_DSP_SETTINGS *out)
73 #endif
75 TRACE("%p, %p, %p, 0x%x, %p\n", handle, listener, emitter, flags, out);
76 F3DAudioCalculate(
77 handle,
78 (const F3DAUDIO_LISTENER*) listener,
79 (const F3DAUDIO_EMITTER*) emitter,
80 flags,
81 (F3DAUDIO_DSP_SETTINGS*) out
84 #endif /* XAUDIO2_VER >= 8 || defined X3DAUDIO1_VER */