diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-11 05:13:07 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-11 05:13:07 +0800 |
commit | 5dc1015e9666ef59682c46e306ed3a4add0a9356 (patch) | |
tree | 7bc125bde4c0c8064d0bd9a4c9733b1faf15e5bd /e-util/e-util.h | |
parent | 3976b6b155858f116261befc5aeb435de7e06c65 (diff) | |
download | gsoc2013-evolution-5dc1015e9666ef59682c46e306ed3a4add0a9356.tar gsoc2013-evolution-5dc1015e9666ef59682c46e306ed3a4add0a9356.tar.gz gsoc2013-evolution-5dc1015e9666ef59682c46e306ed3a4add0a9356.tar.bz2 gsoc2013-evolution-5dc1015e9666ef59682c46e306ed3a4add0a9356.tar.lz gsoc2013-evolution-5dc1015e9666ef59682c46e306ed3a4add0a9356.tar.xz gsoc2013-evolution-5dc1015e9666ef59682c46e306ed3a4add0a9356.tar.zst gsoc2013-evolution-5dc1015e9666ef59682c46e306ed3a4add0a9356.zip |
Added e-printable.c and e-printable.h.
2000-06-10 Christopher James Lahey <clahey@helixcode.com>
* Makefile.am: Added e-printable.c and e-printable.h.
* e-printable.c, e-printable.h: This new class is a printing
context. Other classes return an EPrintable which represents a
context for printing that object.
* e-util.c, e-util.h: Added
e_marshal_NONE__OBJECT_DOUBLE_DOUBLE_BOOL and
e_marshal_DOUBLE__OBJECT_DOUBLE_DOUBLE.
svn path=/trunk/; revision=3510
Diffstat (limited to 'e-util/e-util.h')
-rw-r--r-- | e-util/e-util.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/e-util/e-util.h b/e-util/e-util.h index 7f036877aa..541c3f9afe 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -43,8 +43,16 @@ char *e_read_file (const char *filename); gint e_write_file(const char *filename, const char *data, int flags); void e_marshal_INT__INT_INT_POINTER (GtkObject * object, - GtkSignalFunc func, - gpointer func_data, GtkArg * args); + GtkSignalFunc func, + gpointer func_data, GtkArg * args); + +void e_marshal_NONE__OBJECT_DOUBLE_DOUBLE_BOOL (GtkObject * object, + GtkSignalFunc func, + gpointer func_data, GtkArg * args); + +void e_marshal_DOUBLE__OBJECT_DOUBLE_DOUBLE (GtkObject * object, + GtkSignalFunc func, + gpointer func_data, GtkArg * args); #endif /* _E_UTIL_H_ */ |