diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-04-25 15:34:26 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-04-25 15:34:26 +0000 |
commit | 50b715009438967fa9b37a62649db216ce8021b7 (patch) | |
tree | f2e16ff9e8297b213577d19e121a044532f15fcd /nohtml/options.h | |
parent | a44175dd565f39990ef57719313ef3a88a8d01b6 (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@145 4f64403b-2f21-0410-a795-97e2b3489a10
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
|