This file is indexed.

/usr/include/libvlc-gtk/gtk-libvlc-include.h is in freetuxtv 0.6.8~dfsg1-1build1.

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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
 * freetuxtv
 * Copyright (C) Eric Beuque 2010 <eric.beuque@gmail.com>
 * 
 * freetuxtv is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * freetuxtv 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _GTK_LIBVLC_INCLUDE_H_
#define _GTK_LIBVLC_INCLUDE_H_

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

// Max volume power for VLC
#define LIBVLC_MAX_VOLUME_POWER 2.0 // Represent a percentage (2.0 = 200%)

// Define handle to de
typedef gpointer LIBVLC_INSTANCE_HANDLE;

#define GTK_LIBVLC_ERROR gtk_libvlc_error_quark ()
typedef enum
{
	GTK_LIBVLC_ERROR_LIBVLC
} GtkLibvlcError;

GQuark
gtk_libvlc_error_quark ();

// Enum
typedef enum {
	// Media player event
	GTK_LIBVLC_EVENT_MP_NOTHINGSPECIAL,
	GTK_LIBVLC_EVENT_MP_OPENING,
	GTK_LIBVLC_EVENT_MP_BUFFERING,
	GTK_LIBVLC_EVENT_MP_PLAYING,
	GTK_LIBVLC_EVENT_MP_PAUSED,
	GTK_LIBVLC_EVENT_MP_STOPPED,
	GTK_LIBVLC_EVENT_MP_FORWARD,
	GTK_LIBVLC_EVENT_MP_BACKWARD,
	GTK_LIBVLC_EVENT_MP_ENDREACHED,
	GTK_LIBVLC_EVENT_MP_ENCOUTEREDERROR,
} GtkLibvlcEventType;

#endif /* _GTK_LIBVLC_INCLUDE_H_ */