This file is indexed.

/usr/include/telepathy-1.0/rtcom-telepathy-glib/stream-engine.h is in librtcom-telepathy-glib-dev 0.1.38~git.1.e4dae27b-0ubuntu4.

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
/*
 * stream-engine.h - proxy for telepathy-stream-engine's D-Bus API
 *
 * Copyright (C) 2007-2008 Collabora Ltd. <http://www.collabora.co.uk/>
 * Copyright (C) 2007-2008 Nokia Corporation
 *
 * 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 St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef __RTCOM_TP_STREAM_ENGINE_H__
#define __RTCOM_TP_STREAM_ENGINE_H__

#include <telepathy-glib/proxy.h>

G_BEGIN_DECLS

#define RTCOM_TP_STREAM_ENGINE_BUS_NAME \
  "org.maemo.Telepathy.StreamEngine"
#define RTCOM_TP_STREAM_ENGINE_OBJECT_PATH \
  "/org/maemo/Telepathy/StreamEngine"

typedef struct _RTComTpStreamEngine RTComTpStreamEngine;
typedef struct _RTComTpStreamEngineClass RTComTpStreamEngineClass;
typedef struct _RTComTpStreamEnginePrivate RTComTpStreamEnginePrivate;

struct _RTComTpStreamEngine {
    TpProxy parent;
    /*<private>*/
    RTComTpStreamEnginePrivate *priv;
};

struct _RTComTpStreamEngineClass {
    TpProxyClass parent_class;
    /*<private>*/
    gpointer priv;
};

GType rtcom_tp_stream_engine_get_type (void);

#define RTCOM_TP_TYPE_STREAM_ENGINE \
  (rtcom_tp_stream_engine_get_type ())
#define RTCOM_TP_STREAM_ENGINE(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), RTCOM_TP_TYPE_STREAM_ENGINE, \
                               RTComTpStreamEngine))
#define RTCOM_TP_STREAM_ENGINE_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), RTCOM_TP_TYPE_STREAM_ENGINE, \
                            RTComTpStreamEngineClass))
#define RTCOM_TP_IS_STREAM_ENGINE(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), RTCOM_TP_TYPE_STREAM_ENGINE))
#define RTCOM_TP_IS_STREAM_ENGINE_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), RTCOM_TP_TYPE_STREAM_ENGINE))
#define RTCOM_TP_STREAM_ENGINE_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), RTCOM_TP_TYPE_STREAM_ENGINE, \
                              RTComTpStreamEngineClass))

RTComTpStreamEngine *rtcom_tp_stream_engine_new (TpDBusDaemon *dbus);

G_END_DECLS

#include <rtcom-telepathy-glib/_gen/cli-stream-engine.h>

#endif