This file is indexed.

/usr/include/libinstpatch-1.0/libinstpatch/IpatchParamProp.h is in libinstpatch-dev 1.0.0-6.

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
75
76
77
78
79
80
81
82
/*
 * libInstPatch
 * Copyright (C) 1999-2010 Joshua "Element" Green <jgreen@users.sourceforge.net>
 *
 * This program 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; version 2.1
 * of the License only.
 *
 * 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 program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA or on the web at http://www.gnu.org.
 */
/**
 * SECTION: IpatchParamProp
 * @short_description: GParamSpec extended properties
 * @see_also: 
 * @stability: Stable
 *
 * Extensions to standard GParamSpec include flags (for
 * compact single bit data extensions) and GValue based extensions.
 * An example of usage is the IPATCH_PARAM_UNIQUE flag which indicates
 * a parameter that should be unique amongst sibling items and the
 * "string-max-length" integer GValue which specifies a max
 * length of a GParamSpecString parameter.
 */
#ifndef __IPATCH_PARAM_PROP_H__
#define __IPATCH_PARAM_PROP_H__

#include <glib.h>
#include <glib-object.h>

/* libInstPatch GParamSpec->flags */
enum 
{
/* Parameter should be unique amongst siblings */
  IPATCH_PARAM_UNIQUE = (1 << G_PARAM_USER_SHIFT),

/* Hint that a property should be hidden in user interfaces */
  IPATCH_PARAM_HIDE = (1 << (G_PARAM_USER_SHIFT + 1)),

/* Indicates that property affects audio synthesis */
  IPATCH_PARAM_SYNTH = (1 << (G_PARAM_USER_SHIFT + 2)),

/* Indicates that property can be a real time synthesis parameter */
  IPATCH_PARAM_SYNTH_REALTIME = (1 << (G_PARAM_USER_SHIFT + 3)),

/* Used for properties which don't modify the saveable state of an object.
 * The object's base object save dirty flag wont get set. */
  IPATCH_PARAM_NO_SAVE_CHANGE = (1 << (G_PARAM_USER_SHIFT + 4)),

  /* Indicates that property should not be saved as object state (XML for example) */
  IPATCH_PARAM_NO_SAVE = (1 << (G_PARAM_USER_SHIFT + 5))
};


/* next shift value usable by libInstPatch user in GParamSpec->flags */
#define IPATCH_PARAM_USER_SHIFT  (G_PARAM_USER_SHIFT + 12)


void ipatch_param_install_property (GParamSpec *prop_spec);
GParamSpec *ipatch_param_find_property (const char *name);
GParamSpec **ipatch_param_list_properties (guint *n_properties);
GParamSpec *ipatch_param_set (GParamSpec *spec,
			      const char *first_property_name, ...);
void ipatch_param_set_valist (GParamSpec *spec, const char *first_property_name,
			      va_list args);
void ipatch_param_set_property (GParamSpec *spec, const char *property_name,
				const GValue *value);
void ipatch_param_get (GParamSpec *spec, const char *first_property_name, ...);
void ipatch_param_get_valist (GParamSpec *spec, const char *first_property_name,
			      va_list args);
gboolean ipatch_param_get_property (GParamSpec *spec, const char *property_name,
				    GValue *value);

#endif