Added more stubs for bochs.

svn path=/trunk/; revision=3875
This commit is contained in:
Steven Edwards 2002-12-14 17:36:51 +00:00
parent 218703bf94
commit 9894d327a4
3 changed files with 31 additions and 6 deletions

View file

@ -1,6 +1,10 @@
/*
The stubs here are totaly wrong so please help a brother out
and fix this shit. sedwards 9-24-02
Added more stubs for bochs 1.3 once again still mostly wrong
but bochs gets further now. 12-14-02
*/
#include <windows.h>
@ -15,11 +19,20 @@ waveOutReset(HWAVEOUT hWaveOut)
return 1;
}
UINT WINAPI waveOutWrite(HWAVEOUT hWaveOut, LPCSTR pszSoundA,
UINT uSize)
{
DbgPrint("waveOutWrite unimplemented\n");
return 1;
}
WINBOOL
STDCALL
sndPlaySoundA(LPCSTR pszSoundA, UINT uFlags)
{
DbgPrint("waveOutReset unimplemented\n");
DbgPrint("sndPlaySoundA unimplemented\n");
return 1;
}
@ -27,6 +40,14 @@ WINBOOL
STDCALL
sndPlaySoundW(LPCSTR pszSoundA, UINT uFlags)
{
DbgPrint("waveOutReset unimplemented\n");
DbgPrint("sndPlaySoundW unimplemented\n");
return 1;
}
WINBOOL
STDCALL
midiOutReset(HWAVEOUT hWaveOut)
{
DbgPrint("midiOutReset unimplemented\n");
return 1;
}

View file

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

View file

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