[CSCRIPT][WSCRIPT] Sync with Wine Staging 3.17. CORE-15127
[reactos.git] / base / shell / cmd / verify.c
1 /*
2 * VERIFY.C - verify internal command.
3 *
4 *
5 * History:
6 *
7 * 31 Jul 1998 (John P Price)
8 * started.
9 *
10 * 18-Jan-1999 (Eric Kohl)
11 * VERIFY is just a dummy under Win32; it only exists
12 * for compatibility!!!
13 *
14 * 20-Jan-1999 (Eric Kohl)
15 * Unicode and redirection ready!
16 *
17 * 30-Apr-2005 (Magnus Olsen <magnus@greatlord.com>)
18 * Remove all hardcoded strings in En.rc
19 */
20
21 #include "precomp.h"
22
23 #ifdef INCLUDE_CMD_VERIFY
24
25
26 /* global verify flag */
27 static BOOL bVerify = FALSE;
28
29
30 INT cmd_verify (LPTSTR param)
31 {
32 if (!_tcsncmp (param, _T("/?"), 2))
33 {
34 ConOutResPaging(TRUE,STRING_VERIFY_HELP1);
35 return 0;
36 }
37
38 if (!OnOffCommand(param, &bVerify, STRING_VERIFY_HELP2))
39 {
40 ConErrResPuts(STRING_VERIFY_HELP3);
41 return nErrorLevel = 1;
42 }
43
44 return nErrorLevel = 0;
45 }
46
47 #endif