1 /* This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks.
2 
3     Copyright (C) 2002-2014 by Jin-Hwan Cho and Shunsaku Hirata,
4     the dvipdfmx project team.
5 
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10 
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15 
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19 */
20 
21 #ifndef _OTL_CONF_H_
22 #define _OTL_CONF_H_
23 
24 extern void     otl_conf_set_verbose (void);
25 
26 extern pdf_obj *otl_find_conf  (const char *conf_name);
27 extern void     otl_init_conf  (void);
28 extern void     otl_close_conf (void);
29 
30 extern pdf_obj *otl_conf_get_class (pdf_obj *conf, const char *ident);
31 
32 extern char *otl_conf_get_script   (pdf_obj *conf);
33 extern char *otl_conf_get_language (pdf_obj *conf);
34 extern pdf_obj *otl_conf_get_rule  (pdf_obj *conf);
35 extern pdf_obj *otl_conf_find_opt  (pdf_obj *conf, const char *opt_tag);
36 
37 #endif /* _OTL_CONF_H_ */
38