summaryrefslogtreecommitdiff
path: root/tools/mdbx_load/src/stdafx.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-10-04 14:07:48 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-10-04 14:07:48 +0300
commitad4549295d8eb1be238d36c008acbd28f6203eef (patch)
tree1efb72dba70c55572d94073ffc53f17afc051cc5 /tools/mdbx_load/src/stdafx.h
parent2859081c36402ea7fcbbe4e52799b62e7537ffbf (diff)
mdbx_dump & mdbx_load utilities adapted for Miranda
Diffstat (limited to 'tools/mdbx_load/src/stdafx.h')
-rw-r--r--tools/mdbx_load/src/stdafx.h78
1 files changed, 78 insertions, 0 deletions
diff --git a/tools/mdbx_load/src/stdafx.h b/tools/mdbx_load/src/stdafx.h
new file mode 100644
index 0000000000..706de4dbe5
--- /dev/null
+++ b/tools/mdbx_load/src/stdafx.h
@@ -0,0 +1,78 @@
+/*
+CmdLine plugin for Miranda IM
+
+Copyright © 2007 Cristian Libotean
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+
+#pragma once
+
+#include <stdio.h>
+#include <stdint.h>
+#include <windows.h>
+
+#include "../../libs/libmdbx/src/src/bits.h"
+
+#define CMP_UINT(x, y) { if ((x) != (y)) return (x) < (y) ? -1 : 1; }
+
+struct DBEventSortingKey
+{
+ uint32_t hContact;
+ uint32_t hEvent;
+ uint64_t ts;
+
+ static int Compare(const MDBX_val *ax, const MDBX_val *bx)
+ {
+ const DBEventSortingKey *a = (DBEventSortingKey*)ax->iov_base;
+ const DBEventSortingKey *b = (DBEventSortingKey*)bx->iov_base;
+
+ CMP_UINT(a->hContact, b->hContact);
+ CMP_UINT(a->ts, b->ts);
+ CMP_UINT(a->hEvent, b->hEvent);
+ return 0;
+ }
+};
+
+struct DBEventIdKey
+{
+ uint32_t iModuleId; // offset to a DBModuleName struct of the name of
+ char szEventId[256]; // string id
+
+ static int Compare(const MDBX_val *ax, const MDBX_val *bx)
+ {
+ const DBEventIdKey *a = (DBEventIdKey*)ax->iov_base;
+ const DBEventIdKey *b = (DBEventIdKey*)bx->iov_base;
+ CMP_UINT(a->iModuleId, b->iModuleId);
+ return strcmp(a->szEventId, b->szEventId);
+ }
+};
+
+struct DBSettingKey
+{
+ uint32_t hContact;
+ uint32_t dwModuleId;
+ char szSettingName[1];
+
+ static int Compare(const MDBX_val *ax, const MDBX_val *bx)
+ {
+ const DBSettingKey *a = (DBSettingKey*)ax->iov_base;
+ const DBSettingKey *b = (DBSettingKey*)bx->iov_base;
+
+ CMP_UINT(a->hContact, b->hContact);
+ CMP_UINT(a->dwModuleId, b->dwModuleId);
+ return strcmp(a->szSettingName, b->szSettingName);
+ }
+};