summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-10-27 18:31:17 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-10-27 18:31:17 +0300
commit69c525336f25083947d9f246de16fb83f73ce9d8 (patch)
tree8d051cbb06adce004173d1b3a69377b483c1c401 /main.h
parent1f4c1f489f05bb135c8df93d40db9bb624be969d (diff)
working on autoexchange, reworking prescense, other fings, trying to avoid db usage, using memory for temporary data instead
Diffstat (limited to 'main.h')
-rw-r--r--main.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.h b/main.h
index d63c3c6..0c59b5d 100644
--- a/main.h
+++ b/main.h
@@ -16,6 +16,14 @@
#ifndef MAIN_H
#define MAIN_H
+struct contact_data
+{
+ vector<string> msgs_to_tag;
+ string key_in_prescense;
+};
+
+extern std::map<HANDLE, contact_data> hcontact_data;
+
#endif