aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-util.h-29002
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-05-22 06:40:15 +0800
committernobody <nobody@localhost>2000-05-22 06:40:15 +0800
commitdc29053b0bf6030dc903fbb79962443276c776a1 (patch)
tree70ea22d6a4da2e07bedfe85a5cddc5e7ad0a1246 /e-util/e-util.h-29002
parent3f5d9cb60827ca2a5e032e95aa241cc8376ab46f (diff)
downloadgsoc2013-evolution-dc29053b0bf6030dc903fbb79962443276c776a1.tar
gsoc2013-evolution-dc29053b0bf6030dc903fbb79962443276c776a1.tar.gz
gsoc2013-evolution-dc29053b0bf6030dc903fbb79962443276c776a1.tar.bz2
gsoc2013-evolution-dc29053b0bf6030dc903fbb79962443276c776a1.tar.lz
gsoc2013-evolution-dc29053b0bf6030dc903fbb79962443276c776a1.tar.xz
gsoc2013-evolution-dc29053b0bf6030dc903fbb79962443276c776a1.tar.zst
gsoc2013-evolution-dc29053b0bf6030dc903fbb79962443276c776a1.zip
This commit was manufactured by cvs2svn to create taggnome-debug-0-1-0
'gnome-debug-0-1-0'. svn path=/tags/gnome-debug-0-1-0/; revision=3160
Diffstat (limited to 'e-util/e-util.h-29002')
-rw-r--r--e-util/e-util.h-2900244
1 files changed, 0 insertions, 44 deletions
diff --git a/e-util/e-util.h-29002 b/e-util/e-util.h-29002
deleted file mode 100644
index fef56c0531..0000000000
--- a/e-util/e-util.h-29002
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef _E_UTIL_H_
-#define _E_UTIL_H_
-
-#include <glib.h>
-#include <gtk/gtktypeutils.h>
-
-#define E_MAKE_TYPE(l,str,t,ci,i,parent) \
-GtkType l##_get_type(void)\
-{\
- static GtkType type = 0;\
- if (!type){\
- GtkTypeInfo info = {\
- str,\
- sizeof (t),\
- sizeof (t##Class),\
- (GtkClassInitFunc) ci,\
- (GtkObjectInitFunc) i,\
- NULL, /* reserved 1 */\
- NULL, /* reserved 2 */\
- (GtkClassInitFunc) NULL\
- };\
- type = gtk_type_unique (parent, &info);\
- }\
- return type;\
-}
-
-typedef enum {
- E_FOCUS_NONE,
- E_FOCUS_CURRENT,
- E_FOCUS_START,
- E_FOCUS_END
-} EFocus;
-
-int g_str_compare (const void *x, const void *y);
-int g_int_compare (const void *x, const void *y);
-
-char *e_strdup_strip (char *string);
-
-void e_free_object_list (GList *list);
-void e_free_string_list (GList *list);
-
-char *e_read_file (const char *filename);
-
-#endif /* _E_UTIL_H_ */