Blame gspell/gspell-version.h

Packit aa0600
/*
Packit aa0600
 * This file is part of gspell, a spell-checking library.
Packit aa0600
 *
Packit aa0600
 * Copyright 2017 - Sébastien Wilmet
Packit aa0600
 *
Packit aa0600
 * This library is free software; you can redistribute it and/or
Packit aa0600
 * modify it under the terms of the GNU Lesser General Public
Packit aa0600
 * License as published by the Free Software Foundation; either
Packit aa0600
 * version 2.1 of the License, or (at your option) any later version.
Packit aa0600
 *
Packit aa0600
 * This library is distributed in the hope that it will be useful,
Packit aa0600
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aa0600
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aa0600
 * Lesser General Public License for more details.
Packit aa0600
 *
Packit aa0600
 * You should have received a copy of the GNU Lesser General Public License
Packit aa0600
 * along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit aa0600
 */
Packit aa0600
Packit aa0600
#ifndef GSPELL_VERSION_H
Packit aa0600
#define GSPELL_VERSION_H
Packit aa0600
Packit aa0600
#if !defined (GSPELL_H_INSIDE) && !defined (GSPELL_COMPILATION)
Packit aa0600
#error "Only <gspell/gspell.h> can be included directly."
Packit aa0600
#endif
Packit aa0600
Packit aa0600
#include <glib.h>
Packit aa0600
Packit aa0600
G_BEGIN_DECLS
Packit aa0600
Packit aa0600
#ifndef _GSPELL_EXTERN
Packit aa0600
#define _GSPELL_EXTERN extern
Packit aa0600
#endif
Packit aa0600
Packit aa0600
#define GSPELL_AVAILABLE_IN_ALL _GSPELL_EXTERN
Packit aa0600
#define GSPELL_AVAILABLE_IN_1_2 _GSPELL_EXTERN
Packit aa0600
#define GSPELL_AVAILABLE_IN_1_4 _GSPELL_EXTERN
Packit aa0600
#define GSPELL_AVAILABLE_IN_1_6 _GSPELL_EXTERN
Packit aa0600
Packit aa0600
G_END_DECLS
Packit aa0600
Packit aa0600
#endif /* GSPELL_VERSION_H */
Packit aa0600
Packit aa0600
/* ex:set ts=8 noet: */