diff options
Diffstat (limited to 'src/plugins/exec/exec.h')
-rw-r--r-- | src/plugins/exec/exec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/exec/exec.h b/src/plugins/exec/exec.h index 483b51ef3..c9ac28135 100644 --- a/src/plugins/exec/exec.h +++ b/src/plugins/exec/exec.h @@ -60,6 +60,10 @@ struct t_exec_cmd char *err; /* stderr of command */ int return_code; /* command return code */ + /* pipe/hsignal */ + char *pipe_command; /* output piped to WeeChat/plugin cmd*/ + char *hsignal; /* send a hsignal with output */ + struct t_exec_cmd *prev_cmd; /* link to previous command */ struct t_exec_cmd *next_cmd; /* link to next command */ }; |