1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

exec: add option exec.command.default_options

This commit is contained in:
Sebastien Helleu
2014-03-12 09:57:39 +01:00
parent 9543f9c034
commit 0790836695
4 changed files with 207 additions and 85 deletions
+11
View File
@@ -20,6 +20,17 @@
#ifndef __WEECHAT_EXEC_COMMAND_H
#define __WEECHAT_EXEC_COMMAND_H 1
struct t_exec_cmd_options
{
int command_index;
int use_shell;
int detached;
int pipe_stdin;
int timeout;
int output_to_buffer;
const char *ptr_name;
};
extern void exec_command_init ();
#endif /* __WEECHAT_EXEC_COMMAND_H */