Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentitle.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
1.7.6.1
|