update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdlib / obsol.c
index eac7119..59f8fc4 100644 (file)
@@ -5,18 +5,31 @@
 unsigned char _cpumode = 0;
 unsigned char *_cpumode_dll = &_cpumode;
 
+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);