Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenverify.c
Go to the documentation of this file.
00001 /* 00002 * VERIFY.C - verify internal command. 00003 * 00004 * 00005 * History: 00006 * 00007 * 31 Jul 1998 (John P Price) 00008 * started. 00009 * 00010 * 18-Jan-1999 (Eric Kohl) 00011 * VERIFY is just a dummy under Win32; it only exists 00012 * for compatibility!!! 00013 * 00014 * 20-Jan-1999 (Eric Kohl) 00015 * Unicode and redirection ready! 00016 * 00017 * 30-Apr-2005 (Magnus Olsen) <magnus@greatlord.com>) 00018 * Remove all hardcode string to En.rc 00019 */ 00020 00021 #include <precomp.h> 00022 00023 #ifdef INCLUDE_CMD_VERIFY 00024 00025 00026 /* global verify flag */ 00027 static BOOL bVerify = FALSE; 00028 00029 00030 INT cmd_verify (LPTSTR param) 00031 { 00032 if (!_tcsncmp (param, _T("/?"), 2)) 00033 { 00034 ConOutResPaging(TRUE,STRING_VERIFY_HELP1); 00035 return 0; 00036 } 00037 00038 if (!OnOffCommand(param, &bVerify, STRING_VERIFY_HELP2)) 00039 { 00040 ConErrResPuts(STRING_VERIFY_HELP3); 00041 return nErrorLevel = 1; 00042 } 00043 00044 return nErrorLevel = 0; 00045 } 00046 00047 #endif Generated on Sun May 27 2012 04:18:17 for ReactOS by
1.7.6.1
|