summaryrefslogtreecommitdiff
path: root/src/options.h
blob: 041f4cdbcb2ef4f26682702e9d65101dd7e79319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* binding generator options
 *
 * This file is part of nsgenjsbind.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
 */

#ifndef genjsbind_options_h
#define genjsbind_options_h

struct options {
	char *outfilename;
	char *infilename;
	char *idlpath;
	bool verbose;
	bool debug;
};

extern struct options *options;

#endif