Subversion Repositories SvarDOS

Rev

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

Rev 957 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
#include "rmodinit.h"
28
#include "rmodinit.h"
29
 
29
 
30
/* what cmd_process may return */
30
/* what cmd_process may return */
31
enum cmd_result {
31
enum cmd_result {
32
  CMD_OK,             /* command executed and succeeded */
32
  CMD_OK,              /* command executed and succeeded */
33
  CMD_FAIL,           /* command executed and failed */
33
  CMD_FAIL,            /* command executed and failed */
34
  CMD_NOTFOUND,       /* no such command (not an internal command) */
34
  CMD_NOTFOUND,        /* no such command (not an internal command) */
35
  CMD_CHANGED,        /* command-line transformed, please reparse it */
35
  CMD_CHANGED,         /* command-line transformed, please reparse it */
36
  CMD_CHANGED_BY_CALL /* command-line transformed by CALL */
36
  CMD_CHANGED_BY_CALL, /* command-line transformed by CALL */
-
 
37
  CMD_CHANGED_BY_LH    /* command-line transformed by LOADHIGH */
37
};
38
};
38
 
39
 
39
/* process internal commands */
40
/* process internal commands */
40
enum cmd_result cmd_process(struct rmod_props far *rmod, unsigned short env_seg, const char *cmdline, void *BUFFER, unsigned short BUFFERSZ, const struct redir_data *r, unsigned char delstdin);
41
enum cmd_result cmd_process(struct rmod_props far *rmod, unsigned short env_seg, const char *cmdline, void *BUFFER, unsigned short BUFFERSZ, const struct redir_data *r, unsigned char delstdin);
41
 
42