Subversion Repositories SvarDOS

Rev

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

Rev 1099 Rev 1730
Line 1... Line 1...
1
/* This file is part of the SvarCOM project and is published under the terms
1
/* This file is part of the SvarCOM project and is published under the terms
2
 * of the MIT license.
2
 * of the MIT license.
3
 *
3
 *
4
 * Copyright (C) 2021-2022 Mateusz Viste
4
 * Copyright (C) 2021-2024 Mateusz Viste
5
 *
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a
6
 * Permission is hereby granted, free of charge, to any person obtaining a
7
 * copy of this software and associated documentation files (the "Software"),
7
 * copy of this software and associated documentation files (the "Software"),
8
 * to deal in the Software without restriction, including without limitation
8
 * to deal in the Software without restriction, including without limitation
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
Line 27... Line 27...
27
 */
27
 */
28
 
28
 
29
static enum cmd_result cmd_loadhigh(struct cmd_funcparam *p) {
29
static enum cmd_result cmd_loadhigh(struct cmd_funcparam *p) {
30
 
30
 
31
  if ((p->argc == 0) || (imatch(p->argv[0], "/?"))) {
31
  if ((p->argc == 0) || (imatch(p->argv[0], "/?"))) {
-
 
32
    nls_outputnl(40,0);
-
 
33
    outputnl("");
-
 
34
    output("LOADHIGH ");
-
 
35
    nls_outputnl(40,1);
-
 
36
    output("LH ");
32
    nls_outputnl(0,9); /* "This command is not implemented" */
37
    nls_outputnl(40,1);
-
 
38
    outputnl("");
-
 
39
    nls_outputnl(40,2);
33
    return(CMD_OK);
40
    return(CMD_OK);
34
  }
41
  }
35
 
42
 
36
  /* set the command to be executed */
43
  /* set the command to be executed */
37
  if (p->cmdline[p->argoffset] != 0) {
44
  if (p->cmdline[p->argoffset] != 0) {
38
    memmove((void *)p->cmdline, p->cmdline + p->argoffset, strlen(p->cmdline + p->argoffset) + 1);
45
    memmove((void *)p->cmdline, p->cmdline + p->argoffset, strlen(p->cmdline + p->argoffset) + 1);
39
  }
46
  }
40
 
47
 
41
  return(CMD_CHANGED);
48
  return(CMD_CHANGED_BY_LH);
42
}
49
}