summaryrefslogtreecommitdiff
path: root/dbx_tree/Hash.h
diff options
context:
space:
mode:
authorwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-11-17 12:37:21 +0000
committerwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-11-17 12:37:21 +0000
commit3c0233134bc5a8e42e3a621f0a5eef2aaf487474 (patch)
tree30e49d3065aa387392028a54ef3c1ee7294b9e1e /dbx_tree/Hash.h
parent9139772a56e38f15e08f1a4a3215cfd402f85dde (diff)
adding from berlios: dbx_tree, lastseen-mod, nudge, yamn
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@173 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'dbx_tree/Hash.h')
-rw-r--r--dbx_tree/Hash.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/dbx_tree/Hash.h b/dbx_tree/Hash.h
new file mode 100644
index 0000000..886e8b1
--- /dev/null
+++ b/dbx_tree/Hash.h
@@ -0,0 +1,29 @@
+/*
+
+dbx_tree: tree database driver for Miranda IM
+
+Copyright 2007-2010 Michael "Protogenes" Kunz,
+
+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.
+
+*/
+
+#ifndef _MSC_VER
+#include <stdint.h>
+#else
+#include "stdint.h"
+#endif
+
+uint32_t Hash(const void * Data, uint32_t Length);