Modified: trunk/reactos/subsys/system/cmd/alias.c
Modified: trunk/reactos/subsys/system/cmd/attrib.c
Modified: trunk/reactos/subsys/system/cmd/beep.c
Modified: trunk/reactos/subsys/system/cmd/call.c
Modified: trunk/reactos/subsys/system/cmd/chcp.c
Modified: trunk/reactos/subsys/system/cmd/choice.c
Modified: trunk/reactos/subsys/system/cmd/cls.c
Modified: trunk/reactos/subsys/system/cmd/cmd.c
Modified: trunk/reactos/subsys/system/cmd/cmd.h
Modified: trunk/reactos/subsys/system/cmd/cmdtable.c
Modified: trunk/reactos/subsys/system/cmd/color.c
Modified: trunk/reactos/subsys/system/cmd/console.c
Modified: trunk/reactos/subsys/system/cmd/copy.c
Modified: trunk/reactos/subsys/system/cmd/date.c
Modified: trunk/reactos/subsys/system/cmd/del.c
Modified: trunk/reactos/subsys/system/cmd/delay.c
Modified: trunk/reactos/subsys/system/cmd/echo.c
Modified: trunk/reactos/subsys/system/cmd/for.c
Modified: trunk/reactos/subsys/system/cmd/free.c
Modified: trunk/reactos/subsys/system/cmd/goto.c
Modified: trunk/reactos/subsys/system/cmd/if.c
Modified: trunk/reactos/subsys/system/cmd/internal.c
Modified: trunk/reactos/subsys/system/cmd/label.c
Modified: trunk/reactos/subsys/system/cmd/memory.c
Modified: trunk/reactos/subsys/system/cmd/move.c
Modified: trunk/reactos/subsys/system/cmd/msgbox.c
Modified: trunk/reactos/subsys/system/cmd/path.c
Modified: trunk/reactos/subsys/system/cmd/pause.c
Modified: trunk/reactos/subsys/system/cmd/prompt.c
Modified: trunk/reactos/subsys/system/cmd/ren.c
Modified: trunk/reactos/subsys/system/cmd/screen.c
Modified: trunk/reactos/subsys/system/cmd/set.c
Modified: trunk/reactos/subsys/system/cmd/shift.c
Modified: trunk/reactos/subsys/system/cmd/start.c
Modified: trunk/reactos/subsys/system/cmd/time.c
Modified: trunk/reactos/subsys/system/cmd/title.c
Modified: trunk/reactos/subsys/system/cmd/type.c
Modified: trunk/reactos/subsys/system/cmd/ver.c
Modified: trunk/reactos/subsys/system/cmd/verify.c
Modified: trunk/reactos/subsys/system/cmd/vol.c
Modified: trunk/reactos/subsys/system/cmd/window.c
--- trunk/reactos/subsys/system/cmd/alias.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/alias.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -308,7 +308,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_ALIAS_HELP);
+ ConOutResPaging(TRUE,STRING_ALIAS_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/attrib.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/attrib.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -205,7 +205,7 @@
/* print help */
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_ATTRIB_HELP);
+ ConOutResPaging(TRUE,STRING_ATTRIB_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/beep.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/beep.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -34,7 +34,7 @@
{
if (_tcsncmp (param, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_BEEP_HELP);
+ ConOutResPaging(TRUE,STRING_BEEP_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/call.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/call.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -50,7 +50,7 @@
#endif
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_CALL_HELP);
+ ConOutResPaging(TRUE,STRING_CALL_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/chcp.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/chcp.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -28,7 +28,7 @@
/* print help */
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_CHCP_HELP);
+ ConOutResPaging(TRUE,STRING_CHCP_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/choice.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/choice.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -128,7 +128,7 @@
if (_tcsncmp (param, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_CHOICE_HELP);
+ ConOutResPaging(TRUE,STRING_CHOICE_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/cls.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/cls.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -39,7 +39,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_CLS_HELP);
+ ConOutResPaging(TRUE,STRING_CLS_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/cmd.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/cmd.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -1186,7 +1186,7 @@
if (argc >= 2 && !_tcsncmp (argv[1], _T("/?"), 2))
{
- ConOutResPuts(STRING_CMD_HELP8);
+ ConOutResPaging(TRUE,STRING_CMD_HELP8);
ExitProcess(0);
}
SetConsoleMode (hIn, ENABLE_PROCESSED_INPUT);
--- trunk/reactos/subsys/system/cmd/cmd.h 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/cmd.h 2005-07-07 08:29:22 UTC (rev 16477)
@@ -163,6 +163,7 @@
VOID ConOutResPuts (UINT resID);
VOID ConErrResPuts (UINT resID);
+VOID ConOutResPaging(BOOL NewPage, UINT resID);
/* Prototypes for COPY.C */
INT cmd_copy (LPTSTR, LPTSTR);
--- trunk/reactos/subsys/system/cmd/cmdtable.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/cmdtable.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -262,8 +262,8 @@
VOID PrintCommandListDetail (VOID)
{
- ConOutResPuts(STRING_HELP1);
- ConOutResPuts(STRING_HELP2);
+ ConOutResPaging(TRUE,STRING_HELP1);
+ ConOutResPaging(FALSE,STRING_HELP2);
}
/* EOF */
--- trunk/reactos/subsys/system/cmd/color.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/color.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -26,12 +26,9 @@
#ifdef INCLUDE_CMD_COLOR
-static VOID ColorHelp (VOID)
-{
- ConOutResPuts(STRING_COLOR_HELP1);
-}
+
VOID SetScreenColor (WORD wColor, BOOL bNoFill)
{
DWORD dwWritten;
@@ -73,7 +70,7 @@
if (_tcsncmp (rest, _T("/?"), 2) == 0)
{
- ColorHelp ();
+ ConOutResPaging(TRUE,STRING_COLOR_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/console.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/console.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -187,6 +187,13 @@
#endif
}
+VOID ConOutResPaging(BOOL NewPage, UINT resID)
+{
+ TCHAR szMsg[RC_STRING_MAX_SIZE];
+ LoadString(CMD_ModuleHandle, resID, szMsg, RC_STRING_MAX_SIZE);
+ ConOutPrintfPaging(NewPage, szMsg);
+}
+
VOID ConOutResPuts (UINT resID)
{
TCHAR szMsg[RC_STRING_MAX_SIZE];
--- trunk/reactos/subsys/system/cmd/copy.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/copy.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -647,7 +647,7 @@
if (!_tcsncmp (rest, _T("/?"), 2))
{
- ConOutResPuts(STRING_COPY_HELP2);
+ ConOutResPaging(TRUE,STRING_COPY_HELP2);
return 1;
}
--- trunk/reactos/subsys/system/cmd/date.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/date.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -192,7 +192,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_DATE_HELP4);
+ ConOutResPaging(TRUE,STRING_DATE_HELP4);
return 0;
}
--- trunk/reactos/subsys/system/cmd/del.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/del.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -169,7 +169,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_DEL_HELP1);
+ ConOutResPaging(TRUE,STRING_DEL_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/delay.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/delay.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -22,7 +22,7 @@
if (_tcsncmp (param, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_DELAY_HELP);
+ ConOutResPaging(TRUE,STRING_DELAY_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/echo.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/echo.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -40,7 +40,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_ECHO_HELP4);
+ ConOutResPaging(TRUE,STRING_ECHO_HELP4);
return 0;
}
--- trunk/reactos/subsys/system/cmd/for.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/for.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -61,7 +61,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_FOR_HELP1);
+ ConOutResPaging(TRUE,STRING_FOR_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/free.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/free.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -135,7 +135,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_FREE_HELP2);
+ ConOutResPaging(TRUE,STRING_FREE_HELP2);
return 0;
}
--- trunk/reactos/subsys/system/cmd/goto.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/goto.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -48,9 +48,8 @@
#endif
if (!_tcsncmp (param, _T("/?"), 2))
- {
- LoadString(CMD_ModuleHandle, STRING_GOTO_HELP1, szMsg, RC_STRING_MAX_SIZE);
- ConOutResPuts(STRING_GOTO_HELP1);
+ {
+ ConOutResPaging(TRUE,STRING_GOTO_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/if.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/if.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -48,7 +48,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_IF_HELP1);
+ ConOutResPaging(TRUE,STRING_IF_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/internal.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/internal.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -168,7 +168,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_CD_HELP);
+ ConOutResPaging(TRUE,STRING_CD_HELP);
return 0;
}
@@ -351,7 +351,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_MKDIR_HELP);
+ ConOutResPaging(TRUE,STRING_MKDIR_HELP);
return 0;
}
@@ -424,7 +424,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_RMDIR_HELP);
+ ConOutResPaging(TRUE,STRING_RMDIR_HELP);
return 0;
}
@@ -488,7 +488,7 @@
INT CommandExit (LPTSTR cmd, LPTSTR param)
{
if (!_tcsncmp (param, _T("/?"), 2))
- ConOutResPuts(STRING_EXIT_HELP);
+ ConOutResPaging(TRUE,STRING_EXIT_HELP);
if (bc != NULL && _tcsnicmp(param,_T("/b"),2) == 0)
{
@@ -517,7 +517,7 @@
{
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_REM_HELP);
+ ConOutResPaging(TRUE,STRING_REM_HELP);
}
return 0;
--- trunk/reactos/subsys/system/cmd/label.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/label.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -39,7 +39,7 @@
/* print help */
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_LABEL_HELP1);
+ ConOutResPaging(TRUE,STRING_LABEL_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/memory.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/memory.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -68,7 +68,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_MEMMORY_HELP1);
+ ConOutResPaging(TRUE,STRING_MEMMORY_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/move.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/move.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -86,7 +86,7 @@
" /-Y\n"
"..."));
#else
- ConOutResPuts(STRING_MOVE_HELP2);
+ ConOutResPaging(TRUE,STRING_MOVE_HELP2);
#endif
return 0;
}
--- trunk/reactos/subsys/system/cmd/msgbox.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/msgbox.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -44,7 +44,7 @@
if (_tcsncmp (param, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_MSGBOX_HELP);
+ ConOutResPaging(TRUE,STRING_MSGBOX_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/path.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/path.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -39,7 +39,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_PATH_HELP1);
+ ConOutResPaging(TRUE,STRING_PATH_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/pause.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/pause.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -44,7 +44,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_PAUSE_HELP1);
+ ConOutResPaging(TRUE,STRING_PAUSE_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/prompt.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/prompt.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -184,12 +184,12 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_PROMPT_HELP1);
+ ConOutResPaging(TRUE,STRING_PROMPT_HELP1);
#ifdef FEATURE_DIRECTORY_STACK
- ConOutResPuts(STRING_PROMPT_HELP2);
+ ConOutResPaging(FALSE,STRING_PROMPT_HELP2);
#endif
- ConOutResPuts(STRING_PROMPT_HELP3);
+ ConOutResPaging(FALSE,STRING_PROMPT_HELP3);
return 0;
}
--- trunk/reactos/subsys/system/cmd/ren.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/ren.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -62,7 +62,7 @@
if (!_tcsncmp(param, _T("/?"), 2))
{
- ConOutResPuts(STRING_REN_HELP1);
+ ConOutResPaging(TRUE,STRING_REN_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/screen.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/screen.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -24,7 +24,7 @@
if (_tcsncmp (param, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_SCREEN_HELP);
+ ConOutResPaging(TRUE,STRING_SCREEN_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/set.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/set.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -51,7 +51,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_SET_HELP);
+ ConOutResPaging(TRUE,STRING_SET_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/shift.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/shift.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -46,7 +46,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_SHIFT_HELP);
+ ConOutResPaging(TRUE,STRING_SHIFT_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/start.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/start.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -25,7 +25,7 @@
if (_tcsncmp (rest, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_START_HELP1);
+ ConOutResPaging(TRUE,STRING_START_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/time.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/time.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -140,7 +140,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_TIME_HELP1);
+ ConOutResPaging(TRUE,STRING_TIME_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/title.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/title.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -25,7 +25,7 @@
/* Asking help? */
if (!_tcsncmp(param, _T("/?"), 2))
{
- ConOutResPuts(STRING_TITLE_HELP);
+ ConOutResPaging(TRUE,STRING_TITLE_HELP);
return 0;
}
--- trunk/reactos/subsys/system/cmd/type.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/type.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -48,7 +48,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_TYPE_HELP1);
+ ConOutResPaging(TRUE,STRING_TYPE_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/ver.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/ver.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -67,7 +67,7 @@
if (_tcsstr (param, _T("/?")) != NULL)
{
- ConOutResPuts(STRING_VERSION_HELP1);
+ ConOutResPaging(TRUE,STRING_VERSION_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/verify.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/verify.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -34,7 +34,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_VERIFY_HELP1);
+ ConOutResPaging(TRUE,STRING_VERIFY_HELP1);
return 0;
}
--- trunk/reactos/subsys/system/cmd/vol.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/vol.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -73,7 +73,7 @@
if (!_tcsncmp (param, _T("/?"), 2))
{
- ConOutResPuts(STRING_VOL_HELP4);
+ ConOutResPaging(TRUE,STRING_VOL_HELP4);
return 0;
}
--- trunk/reactos/subsys/system/cmd/window.c 2005-07-07 00:21:21 UTC (rev 16476)
+++ trunk/reactos/subsys/system/cmd/window.c 2005-07-07 08:29:22 UTC (rev 16477)
@@ -183,7 +183,7 @@
if (_tcsncmp (param, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_WINDOW_HELP1);
+ ConOutResPaging(TRUE,STRING_WINDOW_HELP1);
return 0;
}
@@ -200,7 +200,7 @@
if (_tcsncmp (param, _T("/?"), 2) == 0)
{
- ConOutResPuts(STRING_WINDOW_HELP2);
+ ConOutResPaging(TRUE,STRING_WINDOW_HELP2);
return 0;
}