mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added more stubs for bochs.
svn path=/trunk/; revision=3875
This commit is contained in:
parent
218703bf94
commit
9894d327a4
3 changed files with 31 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue