ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

title.c
Go to the documentation of this file.
00001 /*
00002  *  title.c - title internal command.
00003  *
00004  *
00005  *  History:
00006  *  1999-02-11 Emanuele Aliberti
00007  *
00008  *    30-Apr-2005 (Magnus Olsen) <magnus@greatlord.com>)
00009  *        Remove all hardcode string to En.rc
00010  */
00011 
00012 #include <precomp.h>
00013 
00014 #ifdef INCLUDE_CMD_TITLE
00015 
00016 
00017 INT cmd_title (LPTSTR param)
00018 {
00019 
00020     /* Do nothing if no args */
00021     if (*param == _T('\0'))
00022         return 0;
00023 
00024     /* Asking help? */
00025     if (!_tcsncmp(param, _T("/?"), 2))
00026     {
00027         ConOutResPaging(TRUE,STRING_TITLE_HELP);
00028         return 0;
00029     }
00030 
00031     return SetConsoleTitle (param);
00032 }
00033 
00034 #endif /* def INCLUDE_CMD_TITLE */
00035 
00036 /* EOF */

Generated on Sun May 27 2012 04:18:16 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.