diff options
Diffstat (limited to 'nohtml/options.h')
-rw-r--r-- | nohtml/options.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nohtml/options.h b/nohtml/options.h new file mode 100644 index 0000000..f679ad6 --- /dev/null +++ b/nohtml/options.h @@ -0,0 +1,13 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+typedef struct {
+ bool bbcodes;
+} Options;
+
+extern Options options;
+
+void InitOptions();
+void DeinitOptions();
+
+#endif
|