/*----------------------------------------------------------------------------* * .---. * * PornView (_,/\ \ * * photo/movie collection viewer and manager (`a a( ) * * trem0r ) \= ) ( * * (c) 2002 (.--' '--.) * * / (_)^(_) \ * *----------------------------------------------------------------------------*/ /* * These codes are taken from GImageView. * GImageView author: Takuro Ashie */ #ifndef __MARSHAL_H__ #define __MARSHAL_H__ #ifdef HAVE_CONFIG_H #include #endif #include #if (GTK_MAJOR_VERSION >= 2) #include extern void gtk_marshal_INT__INT_INT (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data); #else /* (GTK_MAJOR_VERSION >= 2) */ #include #include void gtk_marshal_INT__INT_INT (GtkObject * object, GtkSignalFunc func, gpointer func_data, GtkArg * args); #endif /* (GTK_MAJOR_VERSION >= 2) */ #endif /* __MARSHAL_H__ */