X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=lib%2Fmsvcrt%2Fstdlib%2Fobsol.c;h=59f8fc45b7d73ed6a6f3f069c9e160021a634034;hb=HEAD;hp=a57e878a500e15789a2b5f5bad966d954865c0cd;hpb=e3ed2d773259cc445c7ff8181ebd934931365328;p=reactos.git diff --git a/lib/msvcrt/stdlib/obsol.c b/lib/msvcrt/stdlib/obsol.c index a57e878..59f8fc4 100644 --- a/lib/msvcrt/stdlib/obsol.c +++ b/lib/msvcrt/stdlib/obsol.c @@ -9,18 +9,27 @@ WINBOOL STDCALL Beep(DWORD dwFreq, DWORD dwDuration); VOID STDCALL Sleep(DWORD dwMilliseconds); UINT STDCALL SetErrorMode(UINT uMode); +/* + * @implemented + */ void _seterrormode(int nMode) { SetErrorMode(nMode); return; } +/* + * @implemented + */ void _beep(unsigned nFreq, unsigned nDur) { Beep(nFreq,nDur); return; } +/* + * @implemented + */ void _sleep(unsigned long ulTime) { Sleep(ulTime);