Added stub for WMMMIDIRUNONCE called by midimap.drv.

This commit is contained in:
Marcus Meissner 1999-09-29 12:12:49 +00:00 committed by Alexandre Julliard
parent 17d455b71d
commit 97a99e51ea
2 changed files with 9 additions and 1 deletions

View File

@ -6,7 +6,7 @@ type win16
3 pascal PlaySound(ptr word long) PlaySound16
5 pascal mmsystemGetVersion() mmsystemGetVersion16
6 pascal DriverProc(long word word long long) DriverProc16
8 stub WMMMIDIRUNONCE
8 pascal WMMMIDIRUNONCE() WMMMidiRunOnce16
30 pascal16 OutputDebugStr(str) OutputDebugString16
31 pascal DriverCallback(long word word word long long long) DriverCallback16
32 pascal StackEnter() StackEnterLeave16

View File

@ -5044,3 +5044,11 @@ void WINAPI StackEnterLeave16(void)
__asm__("stc");
#endif
}
/**************************************************************************
* WMMMIDIRUNONCE [MMSYSTEM.8]
*/
void WINAPI WMMMidiRunOnce16(void)
{
FIXME("(), stub!\n");
}