Commit 3af19f3e authored by John K. Hohm's avatar John K. Hohm Committed by Alexandre Julliard

Implement DllRegisterServer and DllUnregisterServer for dsound.dll,

and add OleSelfRegister version string.
parent 86aa2aa0
......@@ -3,7 +3,7 @@ TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = dsound.dll
IMPORTS = winmm advapi32 kernel32 ntdll
IMPORTS = winmm ole32 user32 advapi32 kernel32 ntdll
EXTRALIBS = $(LIBUUID)
LDDLLFLAGS = @LDDLLFLAGS@
......@@ -16,6 +16,7 @@ C_SRCS = \
mixer.c \
primary.c \
propset.c \
regsvr.c \
sound3d.c
RC_SRCS = version.rc
......
......@@ -10,3 +10,5 @@
10 stdcall DirectSoundFullDuplexCreate8(ptr ptr ptr ptr long long ptr ptr ptr ptr) DirectSoundFullDuplexCreate
11 stdcall DirectSoundCreate8(ptr ptr ptr)
12 stdcall DirectSoundCaptureCreate8(ptr ptr ptr)
@ stdcall -private DllRegisterServer() DSOUND_DllRegisterServer
@ stdcall -private DllUnregisterServer() DSOUND_DllUnregisterServer
......@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define WINE_OLESELFREGISTER
#define WINE_FILEDESCRIPTION_STR "Wine DirectSound"
#define WINE_FILENAME_STR "dsound.dll"
#define WINE_FILEVERSION 4,8,1,881
......
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