summaryrefslogtreecommitdiff
path: root/last_contact/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'last_contact/options.h')
-rw-r--r--last_contact/options.h16
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