1. stub sndPlaySnd[A/W] to keep notepad from bitching

2. gcc 3.x end of line fix

svn path=/trunk/; revision=3617
This commit is contained in:
Steven Edwards 2002-10-03 19:32:05 +00:00
parent a5ba8c663e
commit f10756010c
4 changed files with 26 additions and 5 deletions

View file

@ -33,4 +33,4 @@ DllMain(PVOID hinstDll,
DbgPrint("WINMM: DllMain() done\n");
return TRUE;
}
}

View file

@ -7,9 +7,26 @@
DECLARE_HANDLE(HWAVEOUT); // mmsystem.h
UINT WINAPI
UINT
WINAPI
waveOutReset(HWAVEOUT hWaveOut)
{
DbgPrint("waveOutReset unimplemented\n");
return 1;
}
}
WINBOOL
STDCALL
sndPlaySoundA(LPCSTR pszSoundA, UINT uFlags)
{
DbgPrint("waveOutReset unimplemented\n");
return 1;
}
WINBOOL
STDCALL
sndPlaySoundW(LPCSTR pszSoundA, UINT uFlags)
{
DbgPrint("waveOutReset unimplemented\n");
return 1;
}

View file

@ -1,4 +1,6 @@
LIBRARY WINMM.DLL
EXPORTS
; add more exports as needed
waveOutReset@4
waveOutReset@4
sndPlaySoundA@8
sndPlaySoundW@8

View file

@ -1,4 +1,6 @@
LIBRARY WINMM.DLL
EXPORTS
; add more exports as needed
waveOutReset=waveOutReset@4
waveOutReset=waveOutReset@4
sndPlaySoundA=sndPlaySoundA@8
sndPlaySoundW=sndPlaySoundW@8