summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/options.h b/src/options.h
index 5ded73a..ca71078 100644
--- a/src/options.h
+++ b/src/options.h
@@ -9,15 +9,20 @@
#ifndef nsgenbind_options_h
#define nsgenbind_options_h
+/** global options */
struct options {
- char *outfilename;
- char *infilename;
- char *depfilename;
- FILE *depfilehandle;
- char *idlpath;
- bool verbose; /* verbose processing */
- bool debug; /* debug enabled */
- unsigned int warnings; /* warning flags */
+ char *infilename; /**< binding source */
+
+ char *outfilename; /**< output source file */
+ char *hdrfilename; /**< output header file */
+
+ char *depfilename; /**< dependancy output*/
+ FILE *depfilehandle; /**< dependancy file handle */
+ char *idlpath; /**< path to IDL files */
+
+ bool verbose; /**< verbose processing */
+ bool debug; /**< debug enabled */
+ unsigned int warnings; /**< warning flags */
};
extern struct options *options;