1 /*****************************************************************************
2 
3 NAME:
4    passthrough.h -- prototypes and definitions for passthrough.c
5 
6 ******************************************************************************/
7 
8 #ifndef	PASSTHROUGH_H
9 #define	PASSTHROUGH_H
10 
11 /* in main.c */
12 extern FILE *fpo;
13 
14 extern void passthrough_setup(void);
15 extern void passthrough_cleanup(void);
16 
17 extern int  passthrough_keepopen(void);
18 
19 extern void write_message(rc_t status);
20 extern void write_log_message(rc_t status);
21 
22 extern void output_setup(void);
23 extern void output_cleanup(void);
24 
25 #endif	/* PASSTHROUGH_H */
26