Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / base / shell / cmd / title.c
diff --git a/reactos/base/shell/cmd/title.c b/reactos/base/shell/cmd/title.c
deleted file mode 100644 (file)
index 66738f8..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- *  title.c - title internal command.
- *
- *
- *  History:
- *    1999-02-11 Emanuele Aliberti
- *
- *    30-Apr-2005 (Magnus Olsen <magnus@greatlord.com>)
- *        Remove all hardcoded strings in En.rc
- */
-
-#include "precomp.h"
-
-#ifdef INCLUDE_CMD_TITLE
-
-extern BOOL bTitleSet;
-
-INT cmd_title(LPTSTR param)
-{
-    /* Do nothing if no args */
-    if (*param == _T('\0'))
-        return 0;
-
-    /* Asking help? */
-    if (!_tcsncmp(param, _T("/?"), 2))
-    {
-        ConOutResPaging(TRUE, STRING_TITLE_HELP);
-        return 0;
-    }
-
-    bTitleSet = TRUE;
-    return ConSetTitle(param);
-}
-
-#endif /* INCLUDE_CMD_TITLE */
-
-/* EOF */