Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
93bf951e
Commit
93bf951e
authored
Aug 05, 2020
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 05, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
>
parent
7c9ed2ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Makefile.in
dlls/xactengine3_7/Makefile.in
+1
-0
xact_dll.c
dlls/xactengine3_7/xact_dll.c
+1
-2
No files found.
dlls/xactengine3_7/Makefile.in
View file @
93bf951e
MODULE
=
xactengine3_7.dll
IMPORTS
=
ole32 uuid
EXTRADEFS
=
-DXACT3_VER
=
0x0307
EXTRALIBS
=
$(FAUDIO_LIBS)
EXTRAINCL
=
$(FAUDIO_CFLAGS)
...
...
dlls/xactengine3_7/xact_dll.c
View file @
93bf951e
...
...
@@ -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_XACTEngine
37
))
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_XACTEngine
))
{
TRACE
(
"(%s, %s, %p)
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
IClassFactory_QueryInterface
(
&
XACTFactory
,
riid
,
ppv
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment