diff options
author | nobody <nobody@localhost> | 2000-05-15 12:36:44 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-05-15 12:36:44 +0800 |
commit | ed0a36823be616e1bc7ba9a67e437140c1f12459 (patch) | |
tree | 8e6809dc4947632fed7279523d66fcd047cada6f /e-util/e-util.h-29002 | |
parent | f8ff932ae3149c285acea3977a50596749d38584 (diff) | |
download | gsoc2013-evolution-today.tar gsoc2013-evolution-today.tar.gz gsoc2013-evolution-today.tar.bz2 gsoc2013-evolution-today.tar.lz gsoc2013-evolution-today.tar.xz gsoc2013-evolution-today.tar.zst gsoc2013-evolution-today.zip |
This commit was manufactured by cvs2svn to create tag 'today'.today
svn path=/tags/today/; revision=3041
Diffstat (limited to 'e-util/e-util.h-29002')
-rw-r--r-- | e-util/e-util.h-29002 | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/e-util/e-util.h-29002 b/e-util/e-util.h-29002 deleted file mode 100644 index 2043235cf7..0000000000 --- a/e-util/e-util.h-29002 +++ /dev/null @@ -1,42 +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); -char *e_read_file(const char *filename); - -#endif /* _E_UTIL_H_ */ |