/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Pix * * Copyright (C) 2013 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef GTH_METADATA_PROVIDER_RAW_H #define GTH_METADATA_PROVIDER_RAW_H #include #include #include #include #if LIBRAW_COMPILE_CHECK_VERSION_NOTLESS(0, 21) #define GTH_LIBRAW_INIT_OPTIONS (LIBRAW_OPIONS_NO_DATAERR_CALLBACK) #else #define GTH_LIBRAW_INIT_OPTIONS (LIBRAW_OPIONS_NO_MEMERR_CALLBACK | LIBRAW_OPIONS_NO_DATAERR_CALLBACK) #endif #define GTH_TYPE_METADATA_PROVIDER_RAW (gth_metadata_provider_raw_get_type ()) #define GTH_METADATA_PROVIDER_RAW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GTH_TYPE_METADATA_PROVIDER_RAW, GthMetadataProviderRaw)) #define GTH_METADATA_PROVIDER_RAW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GTH_TYPE_METADATA_PROVIDER_RAW, GthMetadataProviderRawClass)) #define GTH_IS_METADATA_PROVIDER_RAW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTH_TYPE_METADATA_PROVIDER_RAW)) #define GTH_IS_METADATA_PROVIDER_RAW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GTH_TYPE_METADATA_PROVIDER_RAW)) #define GTH_METADATA_PROVIDER_RAW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GTH_TYPE_METADATA_PROVIDER_RAW, GthMetadataProviderRawClass)) typedef struct _GthMetadataProviderRaw GthMetadataProviderRaw; typedef struct _GthMetadataProviderRawClass GthMetadataProviderRawClass; struct _GthMetadataProviderRaw { GthMetadataProvider __parent; }; struct _GthMetadataProviderRawClass { GthMetadataProviderClass __parent_class; }; GType gth_metadata_provider_raw_get_type (void) G_GNUC_CONST; #endif /* GTH_METADATA_PROVIDER_RAW_H */