/*
 ***************************************************************************
 *		   Tell the user what the program is doing
 *
 * Define TELLING_BUFFERS symbol before "including" this header file
 * for the file to generate actual data rather than references to them
 *
 ***************************************************************************
 */


#ifdef TELLING_BUFFERS			/* Generate actual private data	*/
#define _extern
#define _const
#else					/* Generate references only	*/
#define _extern extern
#define _const  const
#endif

					/* Common data			*/
_const _extern char ** Comments_to_channels;
 
#ifdef TELLING_BUFFERS			/* Private data			*/
#endif

extern void initial_dilog(void);
extern void tell_current_status(void);

#undef _extern
#undef _const
