diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:36:52 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:36:52 +0000 |
commit | 7f6efd8c36003cb710319a358f62f1a0d8900384 (patch) | |
tree | 40cc844705a25dd3d6a6f8b28a140bfce17194dc /justtabs/options.h | |
parent | c9afe68aa201d99fd8651a35e45064b57e4d2699 (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@6 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'justtabs/options.h')
-rw-r--r-- | justtabs/options.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/justtabs/options.h b/justtabs/options.h new file mode 100644 index 0000000..e073cff --- /dev/null +++ b/justtabs/options.h @@ -0,0 +1,15 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+typedef struct {
+ bool show_titlebar;
+ bool tab_icon;
+} Options;
+
+extern Options options;
+
+void InitOptions();
+
+void EnableTitleBar();
+
+#endif
|