u
This commit is contained in:
142
jtlsrv-cpp/.static-build/include/vips/error.h
Normal file
142
jtlsrv-cpp/.static-build/include/vips/error.h
Normal file
@@ -0,0 +1,142 @@
|
||||
/* Error handling.
|
||||
*/
|
||||
|
||||
/*
|
||||
|
||||
Copyright (C) 1991-2005 The National Gallery
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
02110-1301 USA
|
||||
|
||||
*/
|
||||
|
||||
/*
|
||||
|
||||
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
|
||||
|
||||
*/
|
||||
|
||||
#ifndef VIPS_ERROR_H
|
||||
#define VIPS_ERROR_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /*__cplusplus*/
|
||||
|
||||
VIPS_API
|
||||
const char *vips_error_buffer(void);
|
||||
VIPS_API
|
||||
char *vips_error_buffer_copy(void);
|
||||
VIPS_API
|
||||
void vips_error_clear(void);
|
||||
|
||||
VIPS_API
|
||||
void vips_error_freeze(void);
|
||||
VIPS_API
|
||||
void vips_error_thaw(void);
|
||||
|
||||
VIPS_API
|
||||
void vips_error(const char *domain, const char *fmt, ...)
|
||||
G_GNUC_PRINTF(2, 3);
|
||||
VIPS_API
|
||||
void vips_verror(const char *domain, const char *fmt, va_list ap);
|
||||
VIPS_API
|
||||
void vips_error_system(int err, const char *domain, const char *fmt, ...)
|
||||
G_GNUC_PRINTF(3, 4);
|
||||
VIPS_API
|
||||
void vips_verror_system(int err, const char *domain,
|
||||
const char *fmt, va_list ap);
|
||||
VIPS_API
|
||||
void vips_error_g(GError **error);
|
||||
VIPS_API
|
||||
void vips_g_error(GError **error);
|
||||
|
||||
VIPS_API
|
||||
void vips_error_exit(const char *fmt, ...)
|
||||
G_GNUC_NORETURN G_GNUC_PRINTF(1, 2);
|
||||
|
||||
VIPS_API
|
||||
int vips_check_uncoded(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_coding(const char *domain, VipsImage *im, VipsCoding coding);
|
||||
VIPS_API
|
||||
int vips_check_coding_known(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_coding_noneorlabq(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_coding_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
||||
VIPS_API
|
||||
int vips_check_mono(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_bands(const char *domain, VipsImage *im, int bands);
|
||||
VIPS_API
|
||||
int vips_check_bands_1or3(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_bands_atleast(const char *domain, VipsImage *im, int bands);
|
||||
VIPS_API
|
||||
int vips_check_bands_1orn(const char *domain, VipsImage *im1, VipsImage *im2);
|
||||
VIPS_API
|
||||
int vips_check_bands_1orn_unary(const char *domain, VipsImage *im, int n);
|
||||
VIPS_API
|
||||
int vips_check_bands_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
||||
VIPS_API
|
||||
int vips_check_bandno(const char *domain, VipsImage *im, int bandno);
|
||||
|
||||
VIPS_API
|
||||
int vips_check_int(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_uint(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_uintorf(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_noncomplex(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_complex(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_twocomponents(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_format(const char *domain, VipsImage *im, VipsBandFormat fmt);
|
||||
VIPS_API
|
||||
int vips_check_u8or16(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_8or16(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_u8or16orf(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_format_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
||||
VIPS_API
|
||||
int vips_check_size_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
||||
VIPS_API
|
||||
int vips_check_oddsquare(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_vector_length(const char *domain, int n, int len);
|
||||
VIPS_API
|
||||
int vips_check_vector(const char *domain, int n, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_hist(const char *domain, VipsImage *im);
|
||||
VIPS_API
|
||||
int vips_check_matrix(const char *domain, VipsImage *im, VipsImage **out);
|
||||
VIPS_API
|
||||
int vips_check_separable(const char *domain, VipsImage *im);
|
||||
|
||||
VIPS_API
|
||||
int vips_check_precision_intfloat(const char *domain,
|
||||
VipsPrecision precision);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /*__cplusplus*/
|
||||
|
||||
#endif /*VIPS_ERROR_H*/
|
||||
Reference in New Issue
Block a user