summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2013-12-07 14:28:19 +0000
committerVincent Sanders <vince@kyllikki.org>2014-05-16 14:38:56 +0100
commit5755930ae93b6305b40620fff0e90bc2e4c64b46 (patch)
treebc2fefbc7c5a7fd405edb6dc24f27daaf4ec6dc4 /src/options.h
parent1e603c7225117c26e793a455a30b59d6d7551d5e (diff)
downloadnsgenbind-5755930ae93b6305b40620fff0e90bc2e4c64b46.tar.gz
nsgenbind-5755930ae93b6305b40620fff0e90bc2e4c64b46.tar.bz2
move binding type from explicit statement into declaration.
As a side effect the binding declaration changes and looses its (unused) name/identifier
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h
index 13c02be..e002a11 100644
--- a/src/options.h
+++ b/src/options.h
@@ -14,10 +14,14 @@ struct options {
char *infilename; /**< binding source */
char *outfilename; /**< output source file */
+ FILE *outfilehandle; /**< output file handle */
+
char *hdrfilename; /**< output header file */
+ FILE *hdrfilehandle; /**< output file handle */
char *depfilename; /**< dependancy output*/
FILE *depfilehandle; /**< dependancy file handle */
+
char *idlpath; /**< path to IDL files */
bool verbose; /**< verbose processing */