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.36.3" | #define VIPS_VERSION "7.36.4" | |||
#define VIPS_VERSION_STRING "7.36.3-Mon Jan 20 18:12:57 MSK 2014" | #define VIPS_VERSION_STRING "7.36.4-Mon Jan 20 18:10:31 MSK 2014" | |||
#define VIPS_MAJOR_VERSION (7) | #define VIPS_MAJOR_VERSION (7) | |||
#define VIPS_MINOR_VERSION (36) | #define VIPS_MINOR_VERSION (36) | |||
#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 | |||
vips7compat.h | vips7compat.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
*/ | */ | |||
/* | /* | |||
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk | These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk | |||
*/ | */ | |||
#ifndef VIPS_VIPS7COMPAT_H | #ifndef VIPS_VIPS7COMPAT_H | |||
#define VIPS_VIP7COMPATS_H | #define VIPS_VIPS7COMPAT_H | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif /*__cplusplus*/ | #endif /*__cplusplus*/ | |||
/* Renamed types. | /* Renamed types. | |||
*/ | */ | |||
#define IM_D93_X0 VIPS_D93_X0 | #define IM_D93_X0 VIPS_D93_X0 | |||
#define IM_D93_Y0 VIPS_D93_Y0 | #define IM_D93_Y0 VIPS_D93_Y0 | |||
skipping to change at line 206 | skipping to change at line 206 | |||
#define im_error_clear vips_error_clear | #define im_error_clear vips_error_clear | |||
#define im_warn vips_warn | #define im_warn vips_warn | |||
#define im_vwarn vips_vwarn | #define im_vwarn vips_vwarn | |||
#define im_diag vips_info | #define im_diag vips_info | |||
#define im_vdiag vips_vinfo | #define im_vdiag vips_vinfo | |||
#define error_exit vips_error_exit | #define error_exit vips_error_exit | |||
#define im_get_argv0 vips_get_argv0 | #define im_get_argv0 vips_get_argv0 | |||
#define im_version_string vips_version_string | #define im_version_string vips_version_string | |||
#define im_version vips_version | #define im_version vips_version | |||
#define im_init_world vips_init | ||||
#define im_get_option_group vips_get_option_group | #define im_get_option_group vips_get_option_group | |||
#define im_guess_prefix vips_guess_prefix | #define im_guess_prefix vips_guess_prefix | |||
#define im_guess_libdir vips_guess_libdir | #define im_guess_libdir vips_guess_libdir | |||
#define im__global_lock vips__global_lock | #define im__global_lock vips__global_lock | |||
#define im_cp_desc vips_image_copy_fields | #define im_cp_desc vips_image_copy_fields | |||
#define im_cp_descv vips_image_copy_fieldsv | #define im_cp_descv vips_image_copy_fieldsv | |||
#define im_cp_desc_array vips_image_copy_fields_array | #define im_cp_desc_array vips_image_copy_fields_array | |||
#define im_image vips_image_new_from_memory | #define im_image vips_image_new_from_memory | |||
#define im_binfile vips_image_new_from_file_raw | #define im_binfile vips_image_new_from_file_raw | |||
skipping to change at line 259 | skipping to change at line 258 | |||
#define im__region_no_ownership vips__region_no_ownership | #define im__region_no_ownership vips__region_no_ownership | |||
#define im_image_sanity( I ) (!vips_object_sanity( VIPS_OBJECT( I ) )) | #define im_image_sanity( I ) (!vips_object_sanity( VIPS_OBJECT( I ) )) | |||
#define im_image_sanity_all vips_object_sanity_all | #define im_image_sanity_all vips_object_sanity_all | |||
#define im__print_all vips_object_print_all | #define im__print_all vips_object_print_all | |||
/* Compat functions. | /* Compat functions. | |||
*/ | */ | |||
int im_init_world( const char *argv0 ); | ||||
VipsImage *im_open( const char *filename, const char *mode ); | VipsImage *im_open( const char *filename, const char *mode ); | |||
VipsImage *im_open_local( VipsImage *parent, | VipsImage *im_open_local( VipsImage *parent, | |||
const char *filename, const char *mode ); | const char *filename, const char *mode ); | |||
int im_open_local_array( VipsImage *parent, | int im_open_local_array( VipsImage *parent, | |||
VipsImage **images, int n, const char *filename, const char *mode ); | VipsImage **images, int n, const char *filename, const char *mode ); | |||
#define im_callback_fn VipsCallbackFn | #define im_callback_fn VipsCallbackFn | |||
int im_add_callback( VipsImage *im, | int im_add_callback( VipsImage *im, | |||
End of changes. 3 change blocks. | ||||
2 lines changed or deleted | 3 lines changed or added | |||