/usr/include/udisks2/udisks/udisksversion.h is in libudisks2-dev 2.7.6-3.
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 69 70 71 72 73 74 | /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/*
* Copyright (C) 2012 David Zeuthen <zeuthen@gmail.com>
*
* 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 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., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*/
#if !defined (__UDISKS_INSIDE_UDISKS_H__) && !defined (UDISKS_COMPILATION)
#error "Only <udisks/udisks.h> can be included directly."
#endif
#ifndef __UDISKS_VERSION_H__
#define __UDISKS_VERSION_H__
#include <gio/gio.h>
G_BEGIN_DECLS
/**
* UDISKS_MAJOR_VERSION:
*
* The major version of the libudisks2 header files.
*/
#define UDISKS_MAJOR_VERSION 2
/**
* UDISKS_MINOR_VERSION:
*
* The minor version of the libudisks2 header files.
*/
#define UDISKS_MINOR_VERSION 7
/**
* UDISKS_MICRO_VERSION:
*
* The micro version of the libudisks2 header files.
*/
#define UDISKS_MICRO_VERSION 6
/**
* UDISKS_CHECK_VERSION:
* @major: The major version to check for.
* @minor: the minor version to check for.
* @micro: The micro version to check for.
*
* Macro to check against the version of the libudisks2 library that
* is being compiled against.
*
* Returns: %TRUE if the version of the libudisks2 header files is the
* same as or newer than the passed in version.
*/
#define UDISKS_CHECK_VERSION(major,minor,micro) \
(UDISKS_MAJOR_VERSION > (major) || \
(UDISKS_MAJOR_VERSION == (major) && UDISKS_MINOR_VERSION > (minor)) || \
(UDISKS_MAJOR_VERSION == (major) && UDISKS_MINOR_VERSION == (minor) && \
UDISKS_MICRO_VERSION >= (micro)))
G_END_DECLS
#endif /* __UDISKS_VERSION_H__ */
|