home *** CD-ROM | disk | FTP | other *** search
- /*
- ### Read the input pending on the pipe ###
- */
-
- #include <stdio.h>
- #include <suntool/sunview.h>
- #include <suntool/panel.h>
- #include <sunwindow/notify.h>
-
- Notify_value auto_pipe_reader(item,fd)
- Panel_item item;
- int fd;
- {
- extern FILE *fp_auto_fromchild;
- extern char auto_file_name[];
-
- if(strncmp(auto_file_name,"@auto",5)==0){
- auto_load_data(fp_auto_fromchild);
- }
- return(NOTIFY_DONE);
- }
-