aboutsummaryrefslogtreecommitdiffstats
path: root/libibex/ibex_internal.h
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2000-02-14 10:00:22 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-02-14 10:00:22 +0800
commitadd8821e99b4ea1b574ed469018ae224a542e6ae (patch)
tree3e9e02c153fb7300707a26a132ee66c9177d2369 /libibex/ibex_internal.h
parente4bbdf696cc2f23e9b1fc288d37a44eb27d9426d (diff)
downloadgsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar
gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.gz
gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.bz2
gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.lz
gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.xz
gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.zst
gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.zip
Initial revision
svn path=/trunk/; revision=1768
Diffstat (limited to 'libibex/ibex_internal.h')
-rw-r--r--libibex/ibex_internal.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/libibex/ibex_internal.h b/libibex/ibex_internal.h
new file mode 100644
index 0000000000..1aabfb98c0
--- /dev/null
+++ b/libibex/ibex_internal.h
@@ -0,0 +1,26 @@
+/*
+ Copyright 2000 Helix Code Inc.
+*/
+#include <glib.h>
+
+#include "ibex.h"
+
+#define IBEX_VERSION "ibex1"
+
+struct ibex {
+ char *path;
+ GTree *files;
+ GHashTable *words;
+ GPtrArray *oldfiles;
+ gboolean dirty;
+};
+
+struct ibex_file {
+ char *name;
+ long index;
+};
+typedef struct ibex_file ibex_file;
+
+gint ibex__strcmp(gconstpointer a, gconstpointer b);
+
+#define IBEX_BUFSIZ 1024