This file is indexed.

/usr/include/libbonobo-2.0/bonobo/bonobo-app-client.h is in libbonobo2-dev 2.32.1-0ubuntu5.

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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef __BONOBO_APP_CLIENT_H__
#define __BONOBO_APP_CLIENT_H__

#include <glib-object.h>
#include <bonobo/Bonobo.h>

G_BEGIN_DECLS

#define BONOBO_TYPE_APP_CLIENT            (bonobo_app_client_get_type ())
#define BONOBO_APP_CLIENT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
                                           BONOBO_TYPE_APP_CLIENT, BonoboAppClient))
#define BONOBO_APP_CLIENT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),\
                                           BONOBO_TYPE_APP_CLIENT, BonoboAppClientClass))
#define BONOBO_IS_APP_CLIENT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj),\
                                           BONOBO_TYPE_APP_CLIENT))
#define BONOBO_IS_APP_CLIENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),\
                                           BONOBO_TYPE_APP_CLIENT))
#define BONOBO_APP_CLIENT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),\
                                           BONOBO_TYPE_APP_CLIENT, BonoboAppClientClass))

typedef struct _BonoboAppClient	       BonoboAppClient;
typedef struct _BonoboAppClientClass   BonoboAppClientClass;
typedef struct _BonoboAppClientMsgDesc BonoboAppClientMsgDesc;


struct _BonoboAppClientMsgDesc {
	gchar *name;
	GType  return_type;
	GType *types;		/* G_TYPE_NONE-terminated array */
	gchar *description;
};


struct _BonoboAppClient
{
	GObject                 parent_instance;
	  /*< private >*/
	Bonobo_Application      app_server;
	BonoboAppClientMsgDesc *msgdescs;
};

struct _BonoboAppClientClass
{
	GObjectClass parent_class;
  
};


GType	         bonobo_app_client_get_type        (void) G_GNUC_CONST;
BonoboAppClient* bonobo_app_client_new             (Bonobo_Application  app_server);
GValue *         bonobo_app_client_msg_send_argv   (BonoboAppClient    *app_client,
						    const char         *message,
						    const GValue       *argv[],
						    CORBA_Environment  *opt_env);
GValue*          bonobo_app_client_msg_send_valist (BonoboAppClient    *app_client,
						    const char         *message,
						    CORBA_Environment  *opt_env,
						    GType               first_arg_type,
						    va_list             var_args);
GValue*          bonobo_app_client_msg_send        (BonoboAppClient    *app_client,
						    const char         *message,
						    CORBA_Environment  *opt_env,
						    GType               first_arg_type,
						    ...);
gint             bonobo_app_client_new_instance    (BonoboAppClient    *app_client,
						    int                 argc,
						    char               *argv[],
						    CORBA_Environment  *opt_env);
BonoboAppClientMsgDesc const *
                 bonobo_app_client_msg_list        (BonoboAppClient    *app_client);

G_END_DECLS

#endif /* __BONOBO_APP_CLIENT_H__ */