/usr/include/gaminggear-0/gaminggear/gaminggear.h is in libgaminggear-dev 0.15.1-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | #ifndef __GAMINGGEAR_H__
#define __GAMINGGEAR_H__
/*
* This file is part of libgaminggear.
*
* libgaminggear 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.
*
* libgaminggear 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 libgaminggear. If not, see <http://www.gnu.org/licenses/>.
*/
/*! \file gaminggear/gaminggear.h
* \brief Global definitions.
*/
#include <glib.h>
G_BEGIN_DECLS
/*! \brief Major version number of libgaminggear.
* \since 1.0
*/
#define GAMINGEAR_MAJOR_VERSION 0
/*! \brief Minor version number of libgaminggear.
* \since 1.0
*/
#define GAMINGEAR_MINOR_VERSION 15
/*! \brief Micro version number of libgaminggear.
* \since 1.0
*/
#define GAMINGEAR_MICRO_VERSION 1
/*! \brief Version number of libgaminggear in string form.
* \since 1.0
*/
#define GAMINGGEAR_VERSION_STRING "0.15.1"
/*! \brief Check version of libgaminggear.
* \param major Major version to check for.
* \param minor Minor version to check for.
* \param micro Micro version to check for.
* \retval boolean \c TRUE if existing version is same or newer than requested version.
* \since 1.0
*/
#define GAMINGEAR_CHECK_VERSION(major,minor,micro) \
(GAMINGEAR_MAJOR_VERSION > (major) || \
(GAMINGEAR_MAJOR_VERSION == (major) && GAMINGEAR_MINOR_VERSION > (minor)) || \
(GAMINGEAR_MAJOR_VERSION == (major) && GAMINGEAR_MINOR_VERSION == (minor) && GAMINGEAR_MICRO_VERSION >= (micro)))
void gaminggearwidget_init(void);
G_END_DECLS
#endif
|