diff options
author | Not Zed <NotZed@HelixCode.com> | 2000-09-19 20:22:00 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-09-19 20:22:00 +0800 |
commit | 288e7bb1fbbbf90a8c80aac2ef9f3aaa729affad (patch) | |
tree | 0e7ad838873096f58ce12c1418bbd8cd11d56f46 /libibex/ibex_internal.h | |
parent | 122b2426dbf33e3c418f774af1ecb07e3369d794 (diff) | |
download | gsoc2013-evolution-288e7bb1fbbbf90a8c80aac2ef9f3aaa729affad.tar.gz gsoc2013-evolution-288e7bb1fbbbf90a8c80aac2ef9f3aaa729affad.tar.zst gsoc2013-evolution-288e7bb1fbbbf90a8c80aac2ef9f3aaa729affad.zip |
** Merged from IBEX_DISK branch to head.
2000-09-19 Not Zed <NotZed@HelixCode.com>
** Merged from IBEX_DISK branch to head.
svn path=/trunk/; revision=5500
Diffstat (limited to 'libibex/ibex_internal.h')
-rw-r--r-- | libibex/ibex_internal.h | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/libibex/ibex_internal.h b/libibex/ibex_internal.h index 1647147a3a..a21867a2ab 100644 --- a/libibex/ibex_internal.h +++ b/libibex/ibex_internal.h @@ -21,19 +21,13 @@ #include <glib.h> #include "ibex.h" +#include "block.h" +#include "wordindex.h" -#define IBEX_VERSION "ibex1" +#define IBEX_VERSION "ibex3" struct ibex { char *path; - GTree *files; - GHashTable *words; - GPtrArray *oldfiles; - gboolean dirty; + struct _memcache *blocks; + struct _IBEXWord *words; }; - -struct ibex_file { - char *name; - long index; -}; -typedef struct ibex_file ibex_file; |