From c4649e323583f41c323b3d6af6f18395a049a056 Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Mon, 17 Dec 2007 22:01:06 +0000 Subject: [PATCH] Rename DSOUND_DllRegisterServer to DllRegisterServer and DSOUND_DllUnregisterServer to DllUnregisterServer. (the same is already done in the other DirectX DLL's with SPEC files) I wonder how dsound.dll could be compiled in the past cause the SPEC file never referenced to these functions. This should fix the build breakage. svn path=/trunk/; revision=31296 --- reactos/dll/directx/dsound/regsvr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/directx/dsound/regsvr.c b/reactos/dll/directx/dsound/regsvr.c index 109ca747bf9..263cd4455b2 100644 --- a/reactos/dll/directx/dsound/regsvr.c +++ b/reactos/dll/directx/dsound/regsvr.c @@ -556,7 +556,7 @@ static struct regsvr_interface const interface_list[] = { /*********************************************************************** * DllRegisterServer (DSOUND.@) */ -HRESULT WINAPI DSOUND_DllRegisterServer(void) +HRESULT WINAPI DllRegisterServer(void) { HRESULT hr; @@ -571,7 +571,7 @@ HRESULT WINAPI DSOUND_DllRegisterServer(void) /*********************************************************************** * DllUnregisterServer (DSOUND.@) */ -HRESULT WINAPI DSOUND_DllUnregisterServer(void) +HRESULT WINAPI DllUnregisterServer(void) { HRESULT hr;