This file is indexed.

/usr/share/vala-0.22/vapi/libbonoboui-2.0.vapi is in valac-0.22-vapi 0.22.1-0ubuntu1.

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
/*
 * WARNING: this vapi file is provided only to support development of gnome-panel applets
 * since libbonoboui is deprecated (http://library.gnome.org/devel/references.html.en_GB)
 */

[CCode (cheader_filename = "libbonoboui.h")]
[Deprecated]
namespace BonoboUI {
	public struct Verb {
		public weak string cname;
		public weak VerbFn cb;
		public void* user_data;
	}

	[CCode (type_check_function = "BONOBO_IS_UI_COMPONENT")]
	public class Component : GLib.Object
	{
	}

	[CCode (has_target = false)]
	public delegate void VerbFn (Component component, void* user_data, string cname);
}