xactengine3_7: Use CLSID defined from global header.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2020-08-05 14:38:38 +10:00 committed by Alexandre Julliard
parent 7c9ed2eeb4
commit 93bf951e1c
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,6 @@
MODULE = xactengine3_7.dll
IMPORTS = ole32 uuid
EXTRADEFS = -DXACT3_VER=0x0307
EXTRALIBS = $(FAUDIO_LIBS)
EXTRAINCL = $(FAUDIO_CFLAGS)

View file

@ -27,7 +27,6 @@
#include "initguid.h"
#include "xact3.h"
#include "rpcproxy.h"
#include "xact_classes.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(xact3);
@ -823,7 +822,7 @@ HRESULT WINAPI DllCanUnloadNow(void)
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **ppv)
{
if (IsEqualGUID(rclsid, &CLSID_XACTEngine37))
if (IsEqualGUID(rclsid, &CLSID_XACTEngine))
{
TRACE("(%s, %s, %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
return IClassFactory_QueryInterface(&XACTFactory, riid, ppv);