?? verify.c
字號:
/* * VERIFY.C - verify internal command. * * * History: * * 31 Jul 1998 (John P Price) * started. * * 18-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>) * VERIFY is just a dummy under Win32; it only exists * for compatibility!!! * * 20-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>) * Unicode and redirection ready! */#include "config.h"#ifdef INCLUDE_CMD_VERIFY#include "cmd.h"/* global verify flag */static BOOL bVerify = FALSE;INT cmd_verify (LPTSTR cmd, LPTSTR param){ if (!_tcsncmp (param, _T("/?"), 2)) { ConOutPuts (_T("This command is just a dummy!!\n") _T( "Sets whether to verify that your files are written correctly to a\n") _T("disk.\n\n") _T("VERIFY [ON | OFF]\n\n") _T("Type VERIFY without a parameter to display the current VERIFY setting.")); return 0; } if (!*param) ConOutPrintf (_T("VERIFY is %s.\n"), bVerify ? D_ON : D_OFF); else if (_tcsicmp (param, D_OFF) == 0) bVerify = FALSE; else if (_tcsicmp (param, D_ON) == 0) bVerify = TRUE; else ConOutPuts (_T("Must specify ON or OFF.")); return 0;}#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -