This file is indexed.

/usr/include/gupnp-1.0/libgupnp/gupnp-types.h is in libgupnp-1.0-dev 0.20.16-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
/*
 * Copyright (C) 2007 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
 * Copyright (C) 2006, 2007 OpenedHand Ltd.
 *
 * Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library 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 __GUPNP_TYPES_H__
#define __GUPNP_TYPES_H__

#include <glib-object.h>

G_BEGIN_DECLS

/**
 * GUPNP_TYPE_BIN_BASE64:
 *
 * A string type containing Base-64 encoded binary data.
 */
#define GUPNP_TYPE_BIN_BASE64 \
                (gupnp_bin_base64_get_type ())
/**
 * GUPNP_TYPE_BIN_HEX:
 *
 * A string type containing binary hexadecimal encoded binary data.
 */
#define GUPNP_TYPE_BIN_HEX \
                (gupnp_bin_hex_get_type ())
/**
 * GUPNP_TYPE_DATE:
 *
 * A string type representing a date in ISO 8601 format with no time or timezone.
 */
#define GUPNP_TYPE_DATE \
                (gupnp_date_get_type ())
/**
 * GUPNP_TYPE_DATE_TIME:
 *
 * A string type representing a date in ISO 8601 format with optional time but no timezone.
 */
#define GUPNP_TYPE_DATE_TIME \
                (gupnp_date_time_get_type ())
/**
 * GUPNP_TYPE_DATE_TIME_TZ:
 *
 * A string type representing a date in ISO 8601 format with optional time and timezone.
 */
#define GUPNP_TYPE_DATE_TIME_TZ \
                (gupnp_date_time_tz_get_type ())
/**
 * GUPNP_TYPE_TIME:
 *
 * A string type representing a time in ISO 8601 format with no date or timezone.
 */
#define GUPNP_TYPE_TIME \
                (gupnp_time_get_type ())
/**
 * GUPNP_TYPE_TIME_TZ:
 *
 * A string type representing a time in ISO 8601 format with optional timezone and no date.
 */
#define GUPNP_TYPE_TIME_TZ \
                (gupnp_time_tz_get_type ())
/**
 * GUPNP_TYPE_URI:
 *
 * A string type representing a Universal Resource Indentifier.
 */
#define GUPNP_TYPE_URI \
                (gupnp_uri_get_type ())
/**
 * GUPNP_TYPE_UUID:
 *
 * A Universally Unique ID represented as a hexadecimal-encoded string.
 */
#define GUPNP_TYPE_UUID \
                (gupnp_uuid_get_type ())

GType
gupnp_bin_base64_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_bin_hex_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_date_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_date_time_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_date_time_tz_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_time_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_time_tz_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_uri_get_type (void) G_GNUC_CONST; /* string */

GType
gupnp_uuid_get_type (void) G_GNUC_CONST; /* string */

#define gupnp_value_get_xml_node( value ) \
        (xmlNode *) g_value_get_boxed ((value))

#define gupnp_value_get_string( value ) \
        (const char *) g_value_get_boxed ((value))

G_END_DECLS

#endif /* __GUPNP_TYPES_H__ */