start of removing #ifdef __Reactos__ in cmd. __Reactos__ = 1 works fine on windows and __Reactos__ = 0 hasnt built since i started working on cmd, making it pointless.

svn path=/trunk/; revision=18367
This commit is contained in:
Brandon Turner 2005-10-08 23:59:48 +00:00
parent 7ab6a27574
commit 96d70479d0
3 changed files with 0 additions and 28 deletions

View file

@ -43,11 +43,7 @@ INT cmd_beep (LPTSTR cmd, LPTSTR param)
if (bc == NULL) if (bc == NULL)
return 1; return 1;
#endif #endif
#ifdef __REACTOS__
Beep (440, 50);
#else
MessageBeep (-1); MessageBeep (-1);
#endif
return 0; return 0;
} }

View file

@ -356,11 +356,7 @@ VOID ReadCommand (LPTSTR str, INT maxlen)
} }
else else
{ {
#ifdef __REACTOS__
Beep (440, 50);
#else
MessageBeep (-1); MessageBeep (-1);
#endif
} }
#endif #endif
#ifdef FEATURE_4NT_FILENAME_COMPLETION #ifdef FEATURE_4NT_FILENAME_COMPLETION
@ -478,11 +474,7 @@ VOID ReadCommand (LPTSTR str, INT maxlen)
} }
else else
{ {
#ifdef __REACTOS__
Beep (440, 50);
#else
MessageBeep (-1); MessageBeep (-1);
#endif
} }
break; break;
@ -555,11 +547,7 @@ VOID ReadCommand (LPTSTR str, INT maxlen)
#if 0 #if 0
else else
{ {
#ifdef __REACTOS__
Beep (440, 100);
#else
MessageBeep (-1); MessageBeep (-1);
#endif
} }
#endif #endif
break; break;

View file

@ -171,11 +171,7 @@ VOID CompleteFilename (LPTSTR str, UINT charcount)
if(!perfectmatch) if(!perfectmatch)
{ {
#ifdef __REACTOS__
Beep (440, 50);
#else
MessageBeep (-1); MessageBeep (-1);
#endif
} }
} }
else else
@ -193,11 +189,7 @@ VOID CompleteFilename (LPTSTR str, UINT charcount)
} }
} }
#ifdef __REACTOS__
Beep (440, 50);
#else
MessageBeep (-1); MessageBeep (-1);
#endif
} }
} }
@ -346,11 +338,7 @@ BOOL ShowCompletionMatches (LPTSTR str, INT charcount)
else else
{ {
/* no match found */ /* no match found */
#ifdef __REACTOS__
Beep (440, 50);
#else
MessageBeep (-1); MessageBeep (-1);
#endif
return FALSE; return FALSE;
} }