diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:37:22 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:37:22 +0000 |
commit | 10a3bfa53858f75fa64833ce5d860a14a756c38a (patch) | |
tree | ad7d5b7f857c5120a77d3b1e60b46512ebf47f56 /message_notify/options.h | |
parent | 7f6efd8c36003cb710319a358f62f1a0d8900384 (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@7 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'message_notify/options.h')
-rw-r--r-- | message_notify/options.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/message_notify/options.h b/message_notify/options.h new file mode 100644 index 0000000..75f1c88 --- /dev/null +++ b/message_notify/options.h @@ -0,0 +1,37 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+#define NOTIFY_NONE 0
+#define NOTIFY_CLOSED 1
+#define NOTIFY_NFORE 2
+#define NOTIFY_ALWAYS 3
+/*
+#define ID_STATUS_ONLINE 40072
+#define ID_STATUS_AWAY 40073
+#define ID_STATUS_DND 40074
+#define ID_STATUS_NA 40075
+#define ID_STATUS_OCCUPIED 40076
+#define ID_STATUS_FREECHAT 40077
+#define ID_STATUS_INVISIBLE 40078
+#define ID_STATUS_ONTHEPHONE 40079
+#define ID_STATUS_OUTTOLUNCH 40080
+*/
+typedef struct Options_tag {
+ int notify_when;
+ int timeout;
+ bool set_colours;
+ COLORREF bkCol;
+ COLORREF textCol;
+ bool consider_tabs;
+ bool close_win;
+ bool disable_status[9];
+} Options;
+
+extern Options options;
+
+int OptInit(WPARAM wParam, LPARAM lParam);
+
+void LoadOptions();
+void SaveOptions();
+
+#endif
|