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 "7.26.3" | #define VIPS_VERSION "7.26.4" | |||
#define VIPS_VERSION_STRING "7.26.3-Tue Jan 21 00:16:06 MSK 2014" | #define VIPS_VERSION_STRING "7.26.4-Tue Jan 21 00:14:16 MSK 2014" | |||
#define VIPS_MAJOR_VERSION (7) | #define VIPS_MAJOR_VERSION (7) | |||
#define VIPS_MINOR_VERSION (26) | #define VIPS_MINOR_VERSION (26) | |||
#define VIPS_MICRO_VERSION (3) | #define VIPS_MICRO_VERSION (4) | |||
/* 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 "" | |||
#endif /*VIPS_VERSION_H*/ | #endif /*VIPS_VERSION_H*/ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||
vips.h | vips.h | |||
---|---|---|---|---|
skipping to change at line 152 | skipping to change at line 152 | |||
#ifdef VIPS_ENABLE_DEPRECATED | #ifdef VIPS_ENABLE_DEPRECATED | |||
#include <vips/deprecated.h> | #include <vips/deprecated.h> | |||
#endif /*VIPS_ENABLE_DEPRECATED*/ | #endif /*VIPS_ENABLE_DEPRECATED*/ | |||
#include <vips/almostdeprecated.h> | #include <vips/almostdeprecated.h> | |||
#include <vips/dispatch.h> | #include <vips/dispatch.h> | |||
const char *vips_get_argv0( void ); | const char *vips_get_argv0( void ); | |||
int vips_init( const char *argv0 ); | int vips_init( const char *argv0 ); | |||
void vips_check_init( void ); | ||||
GOptionGroup *vips_get_option_group( void ); | GOptionGroup *vips_get_option_group( void ); | |||
const char *vips_version_string( void ); | const char *vips_version_string( void ); | |||
int vips_version( int flag ); | int vips_version( int flag ); | |||
const char *vips_guess_prefix( const char *argv0, const char *env_name ); | const char *vips_guess_prefix( const char *argv0, const char *env_name ); | |||
const char *vips_guess_libdir( const char *argv0, const char *env_name ); | const char *vips_guess_libdir( const char *argv0, const char *env_name ); | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
vips7compat.h | vips7compat.h | |||
---|---|---|---|---|
skipping to change at line 167 | skipping to change at line 167 | |||
#define im_binfile vips_image_new_from_file_raw | #define im_binfile vips_image_new_from_file_raw | |||
#define im__open_temp vips_image_new_disc_temp | #define im__open_temp vips_image_new_disc_temp | |||
#define im__test_kill( I ) (vips_image_get_kill( I )) | #define im__test_kill( I ) (vips_image_get_kill( I )) | |||
#define im__start_eval( I ) (vips_image_preeval( I ), vips_image_get_kill( I )) | #define im__start_eval( I ) (vips_image_preeval( I ), vips_image_get_kill( I )) | |||
#define im__handle_eval( I, W, H ) \ | #define im__handle_eval( I, W, H ) \ | |||
(vips_image_eval( I, W, H ), vips_image_get_kill( I )) | (vips_image_eval( I, W, H ), vips_image_get_kill( I )) | |||
#define im__end_eval vips_image_posteval | #define im__end_eval vips_image_posteval | |||
#define im_invalidate vips_image_invalidate_all | #define im_invalidate vips_image_invalidate_all | |||
#define im_isfile vips_image_isfile | #define im_isfile vips_image_isfile | |||
#define im_printdesc( I ) vips_object_print( VIPS_OBJECT( I ) ) | #define im_printdesc( I ) vips_object_print( VIPS_OBJECT( I ) ) | |||
#define im_openout( F ) vips_image_new_from_file( F, "w" ) | #define im_openout( F ) vips_image_new_mode( F, "w" ) | |||
#define im_setbuf( F ) vips_image_new( "t" ) | #define im_setbuf( F ) vips_image_new( "t" ) | |||
#define im_initdesc( image, \ | #define im_initdesc( image, \ | |||
xsize, ysize, bands, bandbits, bandfmt, coding, \ | xsize, ysize, bands, bandbits, bandfmt, coding, \ | |||
type, xres, yres, xo, yo ) \ | type, xres, yres, xo, yo ) \ | |||
vips_image_init_fields( image, \ | vips_image_init_fields( image, \ | |||
xsize, ysize, bands, bandfmt, coding, \ | xsize, ysize, bands, bandfmt, coding, \ | |||
type, xres, yres ) | type, xres, yres ) | |||
#define im__open_image_file vips__open_image_read | #define im__open_image_file vips__open_image_read | |||
skipping to change at line 489 | skipping to change at line 489 | |||
#define IM_MINOR_VERSION VIPS_MINOR_VERSION | #define IM_MINOR_VERSION VIPS_MINOR_VERSION | |||
#define IM_MICRO_VERSION VIPS_MICRO_VERSION | #define IM_MICRO_VERSION VIPS_MICRO_VERSION | |||
#define IM_EXEEXT VIPS_EXEEXT | #define IM_EXEEXT VIPS_EXEEXT | |||
#define IM_SIZEOF_HEADER VIPS_SIZEOF_HEADER | #define IM_SIZEOF_HEADER VIPS_SIZEOF_HEADER | |||
#define im_concurrency_set vips_concurrency_set | #define im_concurrency_set vips_concurrency_set | |||
#define im_concurrency_get vips_concurrency_get | #define im_concurrency_get vips_concurrency_get | |||
/* ruby-vips uses this | ||||
*/ | ||||
#define vips_class_map_concrete_all vips_class_map_all | ||||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif /*__cplusplus*/ | #endif /*__cplusplus*/ | |||
#endif /*VIPS_VIPS7COMPAT_H*/ | #endif /*VIPS_VIPS7COMPAT_H*/ | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 5 lines changed or added | |||