This file is indexed.

/usr/include/gmerlin/bgavdefs.h is in libgmerlin-avdec-dev 1.2.0~dfsg-9build2.

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
/*****************************************************************
 * gmerlin-avdecoder - a general purpose multimedia decoding library
 *
 * Copyright (c) 2001 - 2011 Members of the Gmerlin project
 * gmerlin-general@lists.sourceforge.net
 * http://gmerlin.sourceforge.net
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 BGAVDEFS_H_INCLUDED
#define BGAVDEFS_H_INCLUDED

#ifdef DLL_EXPORT  
#define BGAV_PUBLIC __declspec(dllexport)
#else
#define BGAV_PUBLIC __attribute__ ((visibility("default")))
#endif


#ifdef _WIN32

/* need to declare that we are XP or newer 
 * otherwise, getaddrinfo and other things 
 * won't work */
#define WINVER 0x501

#ifndef EINVAL
#define EINVAL WSAEINVAL
#endif

#ifndef EINPROGRESS
#define EINPROGRESS WSAEINPROGRESS
#endif

/* for MacOSX AND mingw */
#ifndef AI_NUMERICSERV
#define AI_NUMERICSERV 0
#endif

#ifndef NAME_MAX
#define NAME_MAX 255
#endif

#endif


#endif // BGAVDEFS_H_INCLUDED