Add time...() stubs

svn path=/trunk/; revision=4485
This commit is contained in:
Gé van Geldorp 2003-04-03 22:57:00 +00:00
parent 1eb65f81dd
commit 4fbceaaefc
3 changed files with 32 additions and 2 deletions

View file

@ -132,3 +132,27 @@ midiOutLongMsg(HWAVEOUT hWaveOut, LPCSTR pszSoundA,
DbgPrint("midiOutLongMsg stub\n");
return 1;
}
UINT/*MMRESULT*/
STDCALL
timeBeginPeriod(UINT uPeriod)
{
DbgPrint("timeBeginPeriod stub\n");
return 97/*TIMERR_NOCANDO*/;
}
DWORD
STDCALL
timeGetTime(VOID)
{
DbgPrint("timeGetTime stub\n");
return 0;
}
UINT/*MMRESULT*/
STDCALL
timeEndPeriod(UINT uPeriod)
{
DbgPrint("timeEndPeriod stub\n");
return 97/*TIMERR_NOCANDO*/;
}

View file

@ -13,4 +13,7 @@ waveOutOpen@24
waveOutClose@4
waveOutUnprepareHeader@12
midiOutPrepareHeader@12
midiOutLongMsg@12
midiOutLongMsg@12
timeBeginPeriod@4
timeEndPeriod@4
timeGetTime@0

View file

@ -13,4 +13,7 @@ waveOutOpen=waveOutOpen@24
waveOutClose=waveOutClose@4
waveOutUnprepareHeader=waveOutUnprepareHeader@12
midiOutPrepareHeader=midiOutPrepareHeader@12
midiOutLongMsg=midiOutLongMsg@12
midiOutLongMsg=midiOutLongMsg@12
timeBeginPeriod=timeBeginPeriod@4
timeEndPeriod=timeEndPeriod@4
timeGetTime=timeGetTime@0