This file is indexed.

/usr/include/jsonrpc-glib-1.0/jsonrpc-version-macros.h is in libjsonrpc-glib-1.0-dev 3.28.0-1.

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
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/* jsonrpc-version-macros.h
 *
 * Copyright © 2014 Emmanuele Bassi
 *
 * 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
 */

#ifndef JSONRPC_VERSION_MACROS_H
#define JSONRPC_VERSION_MACROS_H

#if !defined(JSONRPC_GLIB_INSIDE) && !defined(JSONRPC_GLIB_COMPILATION)
# error "Only <jsonrpc-glib.h> can be included directly."
#endif

#include "jsonrpc-version.h"

#ifndef _JSONRPC_EXTERN
#define _JSONRPC_EXTERN extern
#endif

#ifdef JSONRPC_DISABLE_DEPRECATION_WARNINGS
#define JSONRPC_DEPRECATED _JSONRPC_EXTERN
#define JSONRPC_DEPRECATED_FOR(f) _JSONRPC_EXTERN
#define JSONRPC_UNAVAILABLE(maj,min) _JSONRPC_EXTERN
#else
#define JSONRPC_DEPRECATED G_DEPRECATED _JSONRPC_EXTERN
#define JSONRPC_DEPRECATED_FOR(f) G_DEPRECATED_FOR(f) _JSONRPC_EXTERN
#define JSONRPC_UNAVAILABLE(maj,min) G_UNAVAILABLE(maj,min) _JSONRPC_EXTERN
#endif

#define JSONRPC_VERSION_3_26 (G_ENCODE_VERSION (3, 26))
#define JSONRPC_VERSION_3_28 (G_ENCODE_VERSION (3, 28))

#if (JSONRPC_MINOR_VERSION == 99)
# define JSONRPC_VERSION_CUR_STABLE (G_ENCODE_VERSION (JSONRPC_MAJOR_VERSION + 1, 0))
#elif (JSONRPC_MINOR_VERSION % 2)
# define JSONRPC_VERSION_CUR_STABLE (G_ENCODE_VERSION (JSONRPC_MAJOR_VERSION, JSONRPC_MINOR_VERSION + 1))
#else
# define JSONRPC_VERSION_CUR_STABLE (G_ENCODE_VERSION (JSONRPC_MAJOR_VERSION, JSONRPC_MINOR_VERSION))
#endif

#if (JSONRPC_MINOR_VERSION == 99)
# define JSONRPC_VERSION_PREV_STABLE (G_ENCODE_VERSION (JSONRPC_MAJOR_VERSION + 1, 0))
#elif (JSONRPC_MINOR_VERSION % 2)
# define JSONRPC_VERSION_PREV_STABLE (G_ENCODE_VERSION (JSONRPC_MAJOR_VERSION, JSONRPC_MINOR_VERSION - 1))
#else
# define JSONRPC_VERSION_PREV_STABLE (G_ENCODE_VERSION (JSONRPC_MAJOR_VERSION, JSONRPC_MINOR_VERSION - 2))
#endif

/**
 * JSONRPC_VERSION_MIN_REQUIRED:
 *
 * A macro that should be defined by the user prior to including
 * the jsonrpc-glib.h header.
 *
 * The definition should be one of the predefined JSONRPC version
 * macros: %JSONRPC_VERSION_3_26, JSONRPC_VERSION_3_28, ...
 *
 * This macro defines the lower bound for the JSONRPC-GLib API to use.
 *
 * If a function has been deprecated in a newer version of JSONRPC-GLib,
 * it is possible to use this symbol to avoid the compiler warnings
 * without disabling warning for every deprecated function.
 *
 * Since: 3.28
 */
#ifndef JSONRPC_VERSION_MIN_REQUIRED
# define JSONRPC_VERSION_MIN_REQUIRED (JSONRPC_VERSION_CUR_STABLE)
#endif

/**
 * JSONRPC_VERSION_MAX_ALLOWED:
 *
 * A macro that should be defined by the user prior to including
 * the jsonrpc-glib.h header.

 * The definition should be one of the predefined JSONRPC-GLib version
 * macros: %JSONRPC_VERSION_1_0, %JSONRPC_VERSION_1_2,...
 *
 * This macro defines the upper bound for the JSONRPC API to use.
 *
 * If a function has been introduced in a newer version of JSONRPC-GLib,
 * it is possible to use this symbol to get compiler warnings when
 * trying to use that function.
 *
 * Since: 3.26
 */
#ifndef JSONRPC_VERSION_MAX_ALLOWED
# if JSONRPC_VERSION_MIN_REQUIRED > JSONRPC_VERSION_PREV_STABLE
#  define JSONRPC_VERSION_MAX_ALLOWED (JSONRPC_VERSION_MIN_REQUIRED)
# else
#  define JSONRPC_VERSION_MAX_ALLOWED (JSONRPC_VERSION_CUR_STABLE)
# endif
#endif

#if JSONRPC_VERSION_MAX_ALLOWED < JSONRPC_VERSION_MIN_REQUIRED
#error "JSONRPC_VERSION_MAX_ALLOWED must be >= JSONRPC_VERSION_MIN_REQUIRED"
#endif
#if JSONRPC_VERSION_MIN_REQUIRED < JSONRPC_VERSION_3_26
#error "JSONRPC_VERSION_MIN_REQUIRED must be >= JSONRPC_VERSION_3_26"
#endif

#if JSONRPC_VERSION_MIN_REQUIRED >= JSONRPC_VERSION_3_26
# define JSONRPC_DEPRECATED_IN_3_26                JSONRPC_DEPRECATED
# define JSONRPC_DEPRECATED_IN_3_26_FOR(f)         JSONRPC_DEPRECATED_FOR(f)
#else
# define JSONRPC_DEPRECATED_IN_3_26                _JSONRPC_EXTERN
# define JSONRPC_DEPRECATED_IN_3_26_FOR(f)         _JSONRPC_EXTERN
#endif

#if JSONRPC_VERSION_MAX_ALLOWED < JSONRPC_VERSION_3_26
# define JSONRPC_AVAILABLE_IN_3_26                 JSONRPC_UNAVAILABLE(3, 26)
#else
# define JSONRPC_AVAILABLE_IN_3_26                 _JSONRPC_EXTERN
#endif

#if JSONRPC_VERSION_MIN_REQUIRED >= JSONRPC_VERSION_3_28
# define JSONRPC_DEPRECATED_IN_3_28                JSONRPC_DEPRECATED
# define JSONRPC_DEPRECATED_IN_3_28_FOR(f)         JSONRPC_DEPRECATED_FOR(f)
#else
# define JSONRPC_DEPRECATED_IN_3_28                _JSONRPC_EXTERN
# define JSONRPC_DEPRECATED_IN_3_28_FOR(f)         _JSONRPC_EXTERN
#endif

#if JSONRPC_VERSION_MAX_ALLOWED < JSONRPC_VERSION_3_28
# define JSONRPC_AVAILABLE_IN_3_28                 JSONRPC_UNAVAILABLE(3, 28)
#else
# define JSONRPC_AVAILABLE_IN_3_28                 _JSONRPC_EXTERN
#endif

#endif /* JSONRPC_VERSION_MACROS_H */