diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-13 14:48:02 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-13 14:48:02 +0000 |
commit | b01805cbb22c14e9a3cd83f5c49c97e6ecb80074 (patch) | |
tree | 528be3fc573c62e086c93cab31918e0cf91483b2 /last_contact/options.h | |
parent | c6d2c013851f3337ab59a4413f7c7447af27142a (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@45 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'last_contact/options.h')
-rw-r--r-- | last_contact/options.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/last_contact/options.h b/last_contact/options.h new file mode 100644 index 0000000..8e428c6 --- /dev/null +++ b/last_contact/options.h @@ -0,0 +1,16 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+typedef struct {
+ int vk;
+ bool mod_shift, mod_alt, mod_ctrl;
+
+ bool hide_if_visible;
+ bool make_topmost;
+} Options;
+
+extern Options options;
+
+void InitOptions();
+
+#endif
|