From 10a3bfa53858f75fa64833ce5d860a14a756c38a Mon Sep 17 00:00:00 2001 From: sje Date: Wed, 1 Nov 2006 14:37:22 +0000 Subject: git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@7 4f64403b-2f21-0410-a795-97e2b3489a10 --- message_notify/options.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 message_notify/options.h (limited to 'message_notify/options.h') 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 -- cgit v1.2.3