mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
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:
parent
a5ba8c663e
commit
f10756010c
4 changed files with 26 additions and 5 deletions
|
@ -33,4 +33,4 @@ DllMain(PVOID hinstDll,
|
|||
DbgPrint("WINMM: DllMain() done\n");
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
LIBRARY WINMM.DLL
|
||||
EXPORTS
|
||||
; add more exports as needed
|
||||
waveOutReset@4
|
||||
waveOutReset@4
|
||||
sndPlaySoundA@8
|
||||
sndPlaySoundW@8
|
|
@ -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
|
Loading…
Reference in a new issue