mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 19:26:42 +00:00
- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
37 lines
551 B
C
37 lines
551 B
C
/*
|
|
* title.c - title internal command.
|
|
*
|
|
*
|
|
* History:
|
|
* 1999-02-11 Emanuele Aliberti
|
|
*
|
|
* 30-Apr-2005 (Magnus Olsen) <[email protected]>)
|
|
* Remove all hardcode string to En.rc
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
#ifdef INCLUDE_CMD_TITLE
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
return SetConsoleTitle (param);
|
|
}
|
|
|
|
#endif /* def INCLUDE_CMD_TITLE */
|
|
|
|
/* EOF */
|