This file is indexed.

/usr/share/doc/libtelepathy-glib-doc/examples/cm/echo-message-parts/chan.h is in libtelepathy-glib-doc 0.24.1-1.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
/*
 * chan.h - header for an example channel
 *
 * Copyright (C) 2007 Collabora Ltd. <http://www.collabora.co.uk/>
 * Copyright (C) 2007 Nokia Corporation
 *
 * Copying and distribution of this file, with or without modification,
 * are permitted in any medium without royalty provided the copyright
 * notice and this notice are preserved.
 */

#ifndef EXAMPLE_ECHO_MESSAGE_PARTS_CHAN_H
#define EXAMPLE_ECHO_MESSAGE_PARTS_CHAN_H

#include <telepathy-glib/telepathy-glib.h>

G_BEGIN_DECLS

typedef struct _ExampleEcho2Channel ExampleEcho2Channel;
typedef struct _ExampleEcho2ChannelClass ExampleEcho2ChannelClass;
typedef struct _ExampleEcho2ChannelPrivate ExampleEcho2ChannelPrivate;

GType example_echo_2_channel_get_type (void);

#define EXAMPLE_TYPE_ECHO_2_CHANNEL \
  (example_echo_2_channel_get_type ())
#define EXAMPLE_ECHO_2_CHANNEL(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), EXAMPLE_TYPE_ECHO_2_CHANNEL, \
                               ExampleEcho2Channel))
#define EXAMPLE_ECHO_2_CHANNEL_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), EXAMPLE_TYPE_ECHO_2_CHANNEL, \
                            ExampleEcho2ChannelClass))
#define EXAMPLE_IS_ECHO_2_CHANNEL(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EXAMPLE_TYPE_ECHO_2_CHANNEL))
#define EXAMPLE_IS_ECHO_2_CHANNEL_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), EXAMPLE_TYPE_ECHO_2_CHANNEL))
#define EXAMPLE_ECHO_2_CHANNEL_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), EXAMPLE_TYPE_ECHO_2_CHANNEL, \
                              ExampleEcho2ChannelClass))

struct _ExampleEcho2ChannelClass {
    TpBaseChannelClass parent_class;
};

struct _ExampleEcho2Channel {
    TpBaseChannel parent;
    TpMessageMixin text;
    ExampleEcho2ChannelPrivate *priv;
};

#define EXAMPLE_ECHO_2_CHANNEL_MAX_SMS_LENGTH 100

void example_echo_2_channel_set_sms (ExampleEcho2Channel *self,
    gboolean sms);

G_END_DECLS

#endif