object.h | object.h | |||
---|---|---|---|---|
skipping to change at line 631 | skipping to change at line 631 | |||
GType vips_type_find( const char *basename, const char *nickname ); | GType vips_type_find( const char *basename, const char *nickname ); | |||
const char *vips_nickname_find( GType type ); | const char *vips_nickname_find( GType type ); | |||
void *vips_class_map_all( GType type, VipsClassMapFn fn, void *a ); | void *vips_class_map_all( GType type, VipsClassMapFn fn, void *a ); | |||
VipsObjectClass *vips_class_find( const char *basename, const char *nicknam e ); | VipsObjectClass *vips_class_find( const char *basename, const char *nicknam e ); | |||
VipsObject **vips_object_local_array( VipsObject *parent, int n ); | VipsObject **vips_object_local_array( VipsObject *parent, int n ); | |||
void vips_object_local_cb( VipsObject *vobject, GObject *gobject ); | void vips_object_local_cb( VipsObject *vobject, GObject *gobject ); | |||
#define vips_object_local( V, G ) \ | #define vips_object_local( V, G ) \ | |||
(g_signal_connect( V, "close", \ | (g_signal_connect( V, "close", G_CALLBACK( vips_object_local_cb ), G | |||
G_CALLBACK( vips_object_local_cb ), G ), 0) | )) | |||
void vips_object_set_static( VipsObject *object, gboolean static_object ); | void vips_object_set_static( VipsObject *object, gboolean static_object ); | |||
void vips_object_print_all( void ); | void vips_object_print_all( void ); | |||
void vips_object_sanity_all( void ); | void vips_object_sanity_all( void ); | |||
void vips_object_rewind( VipsObject *object ); | void vips_object_rewind( VipsObject *object ); | |||
void vips_object_unref_outputs( VipsObject *object ); | void vips_object_unref_outputs( VipsObject *object ); | |||
const char *vips_object_get_description( VipsObject *object ); | const char *vips_object_get_description( VipsObject *object ); | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
/* Macros for the header version. | /* Macros for the header version. | |||
*/ | */ | |||
#ifndef VIPS_VERSION_H | #ifndef VIPS_VERSION_H | |||
#define VIPS_VERSION_H | #define VIPS_VERSION_H | |||
#define VIPS_VERSION "8.0.0" | #define VIPS_VERSION "8.0.1" | |||
#define VIPS_VERSION_STRING "8.0.0-Sat Apr 25 00:09:24 MSK 2015" | #define VIPS_VERSION_STRING "8.0.1-Thu May 21 01:30:06 MSK 2015" | |||
#define VIPS_MAJOR_VERSION (8) | #define VIPS_MAJOR_VERSION (8) | |||
#define VIPS_MINOR_VERSION (0) | #define VIPS_MINOR_VERSION (0) | |||
#define VIPS_MICRO_VERSION (0) | #define VIPS_MICRO_VERSION (1) | |||
/* Not really anything to do with versions, but this is a handy place to pu t | /* Not really anything to do with versions, but this is a handy place to pu t | |||
* it. | * it. | |||
*/ | */ | |||
#define VIPS_EXEEXT "" | #define VIPS_EXEEXT "" | |||
#define VIPS_ENABLE_DEPRECATED 1 | #define VIPS_ENABLE_DEPRECATED 1 | |||
#endif /*VIPS_VERSION_H*/ | #endif /*VIPS_VERSION_H*/ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||