Files
30-seconds-of-code/node_modules/sharp/vendor/include/vips/version.h
2019-08-20 15:52:05 +02:00

35 lines
765 B
C

/* Macros for the header version.
*/
#ifndef VIPS_VERSION_H
#define VIPS_VERSION_H
#define VIPS_VERSION "8.7.4"
#define VIPS_VERSION_STRING "8.7.4-Fri Jan 18 12:51:47 UTC 2019"
#define VIPS_MAJOR_VERSION (8)
#define VIPS_MINOR_VERSION (7)
#define VIPS_MICRO_VERSION (4)
/* The ABI version, as used for library versioning.
*/
#define VIPS_LIBRARY_CURRENT (51)
#define VIPS_LIBRARY_REVISION (5)
#define VIPS_LIBRARY_AGE (9)
/**
* VIPS_SONAME:
*
* The name of the shared object containing the vips library, for example
* "libvips.so.42", or "libvips-42.dll".
*/
#include "soname.h"
/* Not really anything to do with versions, but this is a handy place to put
* it.
*/
#define VIPS_EXEEXT ""
#define VIPS_ENABLE_DEPRECATED 1
#endif /*VIPS_VERSION_H*/