Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ad4ba76e
Commit
ad4ba76e
authored
Oct 05, 2015
by
Andrew Eikum
Committed by
Alexandre Julliard
Oct 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xapofx: Implement CreateFX.
Signed-off-by:
Andrew Eikum
<
aeikum@codeweavers.com
>
parent
24a371c9
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
4 deletions
+16
-4
xapofx1_1.spec
dlls/xapofx1_1/xapofx1_1.spec
+1
-1
xapofx1_3.spec
dlls/xapofx1_3/xapofx1_3.spec
+1
-1
xapofx1_4.spec
dlls/xapofx1_4/xapofx1_4.spec
+1
-1
Makefile.in
dlls/xapofx1_5/Makefile.in
+1
-0
main.c
dlls/xapofx1_5/main.c
+11
-0
xapofx1_5.spec
dlls/xapofx1_5/xapofx1_5.spec
+1
-1
No files found.
dlls/xapofx1_1/xapofx1_1.spec
View file @
ad4ba76e
@
stub
CreateFX
@
cdecl CreateFX(ptr ptr) xapofx1_5.
CreateFX
dlls/xapofx1_3/xapofx1_3.spec
View file @
ad4ba76e
@
stub
CreateFX
@
cdecl CreateFX(ptr ptr) xapofx1_5.
CreateFX
dlls/xapofx1_4/xapofx1_4.spec
View file @
ad4ba76e
@
stub
CreateFX
@
cdecl CreateFX(ptr ptr) xapofx1_5.
CreateFX
dlls/xapofx1_5/Makefile.in
View file @
ad4ba76e
MODULE
=
xapofx1_5.dll
IMPORTS
=
ole32
C_SRCS
=
\
main.c
dlls/xapofx1_5/main.c
View file @
ad4ba76e
...
...
@@ -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
);
}
dlls/xapofx1_5/xapofx1_5.spec
View file @
ad4ba76e
@
stub CreateFX
@
cdecl CreateFX(ptr ptr)
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