diff options
Diffstat (limited to 'plugins/Dbx_mdb/src/dbintf.h')
-rw-r--r-- | plugins/Dbx_mdb/src/dbintf.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/plugins/Dbx_mdb/src/dbintf.h b/plugins/Dbx_mdb/src/dbintf.h index 866b637786..d6751960b2 100644 --- a/plugins/Dbx_mdb/src/dbintf.h +++ b/plugins/Dbx_mdb/src/dbintf.h @@ -103,18 +103,27 @@ struct DBEvent }
};
-#include <poppack.h>
-
struct DBEventSortingKey
{
DWORD dwEventId, ts, dwContactId;
};
+struct DBSettingKey
+{
+ DWORD dwContactID;
+ DWORD dwOfsModule;
+ char szSettingName[100];
+};
+
+
+#include <poppack.h>
+
struct DBCachedContact : public DBCachedContactBase
{
void Advance(DWORD id, DBEvent &dbe);
-
- DBContact dbc;
+ void Snapshot();
+ void Revert();
+ DBContact dbc, tmp_dbc;
};
struct EventItem
|