mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Add time...() stubs
svn path=/trunk/; revision=4485
This commit is contained in:
parent
1eb65f81dd
commit
4fbceaaefc
3 changed files with 32 additions and 2 deletions
|
@ -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*/;
|
||||
}
|
||||
|
|
|
@ -13,4 +13,7 @@ waveOutOpen@24
|
|||
waveOutClose@4
|
||||
waveOutUnprepareHeader@12
|
||||
midiOutPrepareHeader@12
|
||||
midiOutLongMsg@12
|
||||
midiOutLongMsg@12
|
||||
timeBeginPeriod@4
|
||||
timeEndPeriod@4
|
||||
timeGetTime@0
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue