sync with trunk head (34904)
[reactos.git] / reactos / 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 hardcode string to 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 cmd, LPTSTR param)
31 {
32 if (!_tcsncmp (param, _T("/?"), 2))
33 {
34 ConOutResPaging(TRUE,STRING_VERIFY_HELP1);
35 return 0;
36 }
37
38 nErrorLevel = 0;
39
40 if (!*param)
41 {
42 ConOutResPrintf(STRING_VERIFY_HELP2, bVerify ? D_ON : D_OFF);
43 }
44 else if (_tcsicmp (param, D_OFF) == 0)
45 bVerify = FALSE;
46 else if (_tcsicmp (param, D_ON) == 0)
47 bVerify = TRUE;
48 else
49 {
50 ConOutResPuts(STRING_VERIFY_HELP3);
51 }
52
53 return 0;
54 }
55
56 #endif