This file is indexed.

/usr/include/mapper-0/mapper/mapper_types.h is in libmapper-dev 0.3~git+20141027-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
#ifndef __MAPPER_TYPES_H__
#define __MAPPER_TYPES_H__

#ifdef __cplusplus
extern "C" {
#endif

/*! \file This file defines opaque types that are used internally in
 *        libmapper. */

//! An internal structure defining a mapper device.
typedef void *mapper_device;

//! An internal structure defining a mapper network monitor.
typedef void *mapper_monitor;

//! An internal structure defining an object to handle the admin bus.
typedef void *mapper_admin;

//! An internal structure to handle network database.
//! This should be retrieved by calling mapper_monitor_get_db().
typedef void *mapper_db;

//! An internal data structure defining a mapper queue
//! Used to handle a queue of mapper signals
typedef void *mapper_queue;

#ifdef __cplusplus
}
#endif

#endif // __MAPPER_TYPES_H__