File: profiles.h

package info (click to toggle)
vips 8.18.0-2
  • links: PTS
  • area: main
  • in suites: forky
  • size: 53,448 kB
  • sloc: ansic: 172,621; cpp: 12,257; python: 5,077; sh: 773; perl: 40; makefile: 25; javascript: 6
file content (12 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
/* The fallback profiles, coded as a set of uchar arrays, see wrap-profiles.sh
 */

#include <stddef.h>

typedef struct _VipsProfileFallback {
	const char *name;
	size_t length;
	const unsigned char data[];
} VipsProfileFallback;

extern VipsProfileFallback *vips__profile_fallback_table[];