Subversion Repositories SvarDOS

Rev

Rev 437 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 437 Rev 533
Line 25... Line 25...
25
/*
25
/*
26
 * pause
26
 * pause
27
 */
27
 */
28
 
28
 
29
 
29
 
30
static int cmd_pause(struct cmd_funcparam *p) {
30
static enum cmd_result cmd_pause(struct cmd_funcparam *p) {
31
  if (cmd_ishlp(p)) {
31
  if (cmd_ishlp(p)) {
32
    nls_outputnl(15, 0);
32
    nls_outputnl(15, 0);
33
    outputnl("\r\nPAUSE");
33
    outputnl("\r\nPAUSE");
-
 
34
  } else {
34
    return(-1);
35
    press_any_key();
35
  }
36
  }
36
 
-
 
37
  press_any_key();
-
 
38
  return(-1);
37
  return(CMD_OK);
39
}
38
}