diff options
Diffstat (limited to 'plugins/MessageState/src/global.h')
-rw-r--r-- | plugins/MessageState/src/global.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/MessageState/src/global.h b/plugins/MessageState/src/global.h new file mode 100644 index 0000000000..c3fac26cd7 --- /dev/null +++ b/plugins/MessageState/src/global.h @@ -0,0 +1,28 @@ +#ifndef _GLOBAL_H_
+#define _GLOBAL_H_
+
+static LIST<void> arMonitoredWindows(3, PtrKeySortT);
+
+static IconItem Icons[] =
+{
+ { LPGEN("Unreaded message icon"), "unread_icon", IDI_UNREAD },
+ { LPGEN("Readed message icon"), "read_icon", IDI_READ },
+ { LPGEN("Failed sending icon"), "fail_icon", IDI_FAIL },
+ { LPGEN("Sending message icon"), "nosent_icon", IDI_NOSENT }
+};
+
+enum SRMM_ICON_TYPE
+{
+ ICON_HIDDEN,
+ ICON_READED,
+ ICON_UNREADED,
+ ICON_FAILED,
+ ICON_NOSENT
+};
+
+#define FLAG_CONTAINS(x,y) ((x & y) == y)
+#define DBKEY_MESSAGE_READ_TIME "LastMsgReadTime"
+
+int OnModulesLoaded(WPARAM, LPARAM);
+
+#endif //_GLOBAL_H_
\ No newline at end of file |