diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-25 15:44:11 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-25 15:44:11 +0800 |
commit | 55702ec70beb591bf3e44b1a58d7cb8ab2c59c92 (patch) | |
tree | 240d5446bbba34dafce0671cf5e9d70833521cd0 /e-util/e-util.h | |
parent | 38a5ff75a721c82e458c6268da243972314aa517 (diff) | |
download | gsoc2013-evolution-55702ec70beb591bf3e44b1a58d7cb8ab2c59c92.tar gsoc2013-evolution-55702ec70beb591bf3e44b1a58d7cb8ab2c59c92.tar.gz gsoc2013-evolution-55702ec70beb591bf3e44b1a58d7cb8ab2c59c92.tar.bz2 gsoc2013-evolution-55702ec70beb591bf3e44b1a58d7cb8ab2c59c92.tar.lz gsoc2013-evolution-55702ec70beb591bf3e44b1a58d7cb8ab2c59c92.tar.xz gsoc2013-evolution-55702ec70beb591bf3e44b1a58d7cb8ab2c59c92.tar.zst gsoc2013-evolution-55702ec70beb591bf3e44b1a58d7cb8ab2c59c92.zip |
Added a bunch of e_marshal functions.
2000-07-25 Christopher James Lahey <clahey@helixcode.com>
* e-util.c, e-util.h: Added a bunch of e_marshal functions.
svn path=/trunk/; revision=4311
Diffstat (limited to 'e-util/e-util.h')
-rw-r--r-- | e-util/e-util.h | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/e-util/e-util.h b/e-util/e-util.h index 25fd839e19..91856de1cc 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -46,8 +46,8 @@ gchar **e_strsplit (const gchar *string, const gchar *delimiter, gint max_tokens); -gchar *e_strstrcase (const gchar *haystack, - const gchar *needle); +const gchar *e_strstrcase (const gchar *haystack, + const gchar *needle); void e_marshal_INT__INT_INT_POINTER (GtkObject * object, GtkSignalFunc func, @@ -65,5 +65,27 @@ void e_marshal_BOOL__OBJECT_DOUBLE_DOUBLE_BOOL (GtkObject * object, GtkSignalFunc func, gpointer func_data, GtkArg * args); +#define e_marshal_NONE__INT_INT_POINTER_POINTER_UINT_UINT e_marshal_NONE__INT_INT_POINTER_POINTER_INT_INT +void e_marshal_NONE__INT_INT_POINTER_POINTER_INT_INT (GtkObject * object, + GtkSignalFunc func, + gpointer func_data, + GtkArg * args); + +#define e_marshal_NONE__INT_INT_POINTER_UINT e_marshal_NONE__INT_INT_POINTER_INT +void e_marshal_NONE__INT_INT_POINTER_INT (GtkObject * object, + GtkSignalFunc func, + gpointer func_data, GtkArg * args); + +#define e_marshal_BOOL__INT_INT_POINTER_INT_INT_UINT e_marshal_BOOL__INT_INT_POINTER_INT_INT_INT +void e_marshal_BOOL__INT_INT_POINTER_INT_INT_INT (GtkObject * object, + GtkSignalFunc func, + gpointer func_data, + GtkArg * args); + +#define e_marshal_NONE__INT_INT_POINTER_INT_INT_POINTER_UINT_UINT e_marshal_NONE__INT_INT_POINTER_INT_INT_POINTER_INT_INT +void e_marshal_NONE__INT_INT_POINTER_INT_INT_POINTER_INT_INT (GtkObject * object, + GtkSignalFunc func, + gpointer func_data, + GtkArg * args); #endif /* _E_UTIL_H_ */ |