xapofx: Implement CreateFX.
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
This commit is contained in:
parent
24a371c9d6
commit
ad4ba76eb0
|
@ -1 +1 @@
|
|||
@ stub CreateFX
|
||||
@ cdecl CreateFX(ptr ptr) xapofx1_5.CreateFX
|
||||
|
|
|
@ -1 +1 @@
|
|||
@ stub CreateFX
|
||||
@ cdecl CreateFX(ptr ptr) xapofx1_5.CreateFX
|
||||
|
|
|
@ -1 +1 @@
|
|||
@ stub CreateFX
|
||||
@ cdecl CreateFX(ptr ptr) xapofx1_5.CreateFX
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
MODULE = xapofx1_5.dll
|
||||
IMPORTS = ole32
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
||||
|
|
|
@ -19,8 +19,13 @@
|
|||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "initguid.h"
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "compobj.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(xaudio2);
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
||||
{
|
||||
|
@ -35,3 +40,9 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
HRESULT CDECL CreateFX(REFCLSID clsid, IUnknown **out)
|
||||
{
|
||||
TRACE("%s %p\n", debugstr_guid(clsid), out);
|
||||
return CoCreateInstance(clsid, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown, (void**)out);
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
@ stub CreateFX
|
||||
@ cdecl CreateFX(ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue