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.1" | #define VIPS_VERSION "8.0.2" | |||
#define VIPS_VERSION_STRING "8.0.1-Thu May 21 01:30:06 MSK 2015" | #define VIPS_VERSION_STRING "8.0.2-Thu May 21 01:27:33 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 (1) | #define VIPS_MICRO_VERSION (2) | |||
/* 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 | |||
vips7compat.h | vips7compat.h | |||
---|---|---|---|---|
skipping to change at line 1143 | skipping to change at line 1143 | |||
void im__analyze_register( void ); | void im__analyze_register( void ); | |||
void im__exr_register( void ); | void im__exr_register( void ); | |||
void im__magick_register( void ); | void im__magick_register( void ); | |||
int im__bandup( const char *domain, VipsImage *in, VipsImage *out, int n ); | int im__bandup( const char *domain, VipsImage *in, VipsImage *out, int n ); | |||
int im__bandalike_vec( const char *domain, VipsImage **in, VipsImage **out, int n ); | int im__bandalike_vec( const char *domain, VipsImage **in, VipsImage **out, int n ); | |||
int im__bandalike( const char *domain, | int im__bandalike( const char *domain, | |||
VipsImage *in1, VipsImage *in2, VipsImage *out1, VipsImage *out2 ); | VipsImage *in1, VipsImage *in2, VipsImage *out1, VipsImage *out2 ); | |||
int im__formatalike_vec( VipsImage **in, VipsImage **out, int n ); | int im__formatalike_vec( VipsImage **in, VipsImage **out, int n ); | |||
int im__formatalike( VipsImage *in1, VipsImage *in2, VipsImage *out1, VipsI mage *out2 ); | int im__formatalike( VipsImage *in1, VipsImage *in2, VipsImage *out1, VipsI mage *out2 ); | |||
int im__sizealike_vec( VipsImage **in, VipsImage **out, int n ); | ||||
int im__sizealike( VipsImage *in1, VipsImage *in2, | ||||
VipsImage *out1, VipsImage *out2 ); | ||||
int im__arith_binary( const char *domain, | ||||
VipsImage *in1, VipsImage *in2, VipsImage *out, | ||||
int format_table[10], | ||||
im_wrapmany_fn fn, void *b ); | ||||
int im__arith_binary_const( const char *domain, | ||||
VipsImage *in, VipsImage *out, | ||||
int n, double *c, VipsBandFormat vfmt, | ||||
int format_table[10], | ||||
im_wrapone_fn fn1, im_wrapone_fn fnn ); | ||||
int im__value( VipsImage *im, double *value ); | ||||
typedef int (*im__wrapscan_fn)( void *p, int n, void *seq, void *a, void *b ); | typedef int (*im__wrapscan_fn)( void *p, int n, void *seq, void *a, void *b ); | |||
int im__wrapscan( VipsImage *in, | int im__wrapscan( VipsImage *in, | |||
VipsStartFn start, im__wrapscan_fn scan, VipsStopFn stop, | VipsStartFn start, im__wrapscan_fn scan, VipsStopFn stop, | |||
void *a, void *b ); | void *a, void *b ); | |||
int im__colour_difference( const char *domain, | int im__colour_difference( const char *domain, | |||
VipsImage *in1, VipsImage *in2, VipsImage *out, | VipsImage *in1, VipsImage *in2, VipsImage *out, | |||
im_wrapmany_fn buffer_fn, void *a, void *b ); | im_wrapmany_fn buffer_fn, void *a, void *b ); | |||
int im__colour_unary( const char *domain, | int im__colour_unary( const char *domain, | |||
VipsImage *in, VipsImage *out, VipsInterpretation interpretation, | VipsImage *in, VipsImage *out, VipsInterpretation interpretation, | |||
im_wrapone_fn buffer_fn, void *a, void *b ); | im_wrapone_fn buffer_fn, void *a, void *b ); | |||
End of changes. 2 change blocks. | ||||
13 lines changed or deleted | 0 lines changed or added | |||