Added SILC Thread Queue API
[runtime.git] / apps / irssi / src / fe-common / core / fe-exec.h
index bebd1f82cf6384c0835797a391dad11487e1025a..20219d5adf94f59b6b296bea745c94958582865a 100644 (file)
@@ -32,12 +32,16 @@ struct PROCESS_REC {
 
         int level; /* what level to use when printing the text */
         char *target; /* send text with /msg <target> ... */
+       char *target_server;
        WINDOW_REC *target_win; /* print text to this window */
         EXEC_WI_REC *target_item; /* print text to this exec window item */
 
        unsigned int shell:1; /* start the program via /bin/sh */
        unsigned int notice:1; /* send text with /notice, not /msg if target is set */
        unsigned int silent:1; /* don't print "process exited with level xx" */
+       unsigned int quiet:1; /* don't print process output at all */
+       unsigned int target_channel:1; /* target is a channel */
+       unsigned int target_nick:1; /* target is a nick */
 };
 
 extern GSList *processes;