Commit f529a5aa authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

x3daudio1_7: Stub X3DAudioInitialize.

parent fbf7046a
...@@ -21,6 +21,10 @@ ...@@ -21,6 +21,10 @@
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(x3daudio);
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
{ {
switch (reason) switch (reason)
...@@ -34,3 +38,9 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) ...@@ -34,3 +38,9 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
return TRUE; return TRUE;
} }
HRESULT CDECL X3DAudioInitialize(UINT32 chanmask, float speedofsound, void *handle)
{
FIXME("0x%x, %f, %p: Stub!\n", chanmask, speedofsound, handle);
return S_OK;
}
@ stub X3DAudioCalculate @ stub X3DAudioCalculate
@ stub X3DAudioInitialize @ cdecl X3DAudioInitialize(long float ptr)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment