1 /* -*- Mode: C; c-basic-offset:4 ; -*- */
2 /*
3  *  (C) 2008 by Argonne National Laboratory.
4  *      See COPYRIGHT in top-level directory.
5  */
6 
7 #ifndef UI_H_INCLUDED
8 #define UI_H_INCLUDED
9 
10 struct HYD_ui_info {
11     char *prepend_pattern;
12     char *outfile_pattern;
13     char *errfile_pattern;
14 };
15 
16 extern struct HYD_ui_info HYD_ui_info;
17 
18 #endif /* UI_H_INCLUDED */
19