Author: cfinck Date: Tue Dec 18 01:01:06 2007 New Revision: 31296
URL: http://svn.reactos.org/svn/reactos?rev=31296&view=rev Log: 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.
Modified: trunk/reactos/dll/directx/dsound/regsvr.c
Modified: trunk/reactos/dll/directx/dsound/regsvr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/dsound/regsvr.c... ============================================================================== --- trunk/reactos/dll/directx/dsound/regsvr.c (original) +++ trunk/reactos/dll/directx/dsound/regsvr.c Tue Dec 18 01:01:06 2007 @@ -556,7 +556,7 @@ /*********************************************************************** * DllRegisterServer (DSOUND.@) */ -HRESULT WINAPI DSOUND_DllRegisterServer(void) +HRESULT WINAPI DllRegisterServer(void) { HRESULT hr;
@@ -571,7 +571,7 @@ /*********************************************************************** * DllUnregisterServer (DSOUND.@) */ -HRESULT WINAPI DSOUND_DllUnregisterServer(void) +HRESULT WINAPI DllUnregisterServer(void) { HRESULT hr;