1 /*
2  * conf.h
3  *
4  * All rights reserved. Copyright (C) 1998 by NARITA Tomio
5  * $Id: conf.h,v 1.4 2003/11/13 03:30:49 nrt Exp $
6  */
7 
8 #ifndef __CONF_H__
9 #define __CONF_H__
10 
11 #include <stream.h>
12 
13 typedef struct {
14   byte		**file;
15   stream_t	*st;
16   int		width;
17   int		height;
18   boolean_t	options;
19   byte		inputCodingSystem;
20   byte		outputCodingSystem;
21   byte		keyboardCodingSystem;
22   byte		pathnameCodingSystem;
23   byte		defaultCodingSystem;
24   boolean_t	keyCodingSystemVirgin;
25   byte		*pattern;
26 } conf_t;
27 
28 public void ConfInit( byte **argv );
29 public void Conf( conf_t *conf, byte **argv );
30 public byte *ConfFilename( conf_t *conf );
31 
32 #endif /* __CONF_H__ */
33