/usr/include/libbonobo-2.0/bonobo/bonobo-main.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 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/**
* bonobo-main.h: Bonobo Main
*
* Author:
* Miguel de Icaza (miguel@gnu.org)
* Nat Friedman (nat@nat.org)
* Peter Wainwright (prw@wainpr.demo.co.uk)
*
* Copyright 1999 Helix Code, Inc.
*/
#ifndef __LIBBONOBO_MAIN_H__
#define __LIBBONOBO_MAIN_H__
#include <glib-object.h>
#include <bonobo/Bonobo.h>
G_BEGIN_DECLS
gboolean bonobo_is_initialized (void);
gboolean bonobo_init (int *argc,
char **argv);
gboolean bonobo_init_full (int *argc,
char **argv,
CORBA_ORB opt_orb,
PortableServer_POA opt_poa,
PortableServer_POAManager opt_manager);
int bonobo_debug_shutdown (void);
void bonobo_main (void);
void bonobo_main_quit (void);
guint bonobo_main_level (void);
gboolean bonobo_activate (void);
void bonobo_setup_x_error_handler (void);
CORBA_ORB bonobo_orb (void);
PortableServer_POA bonobo_poa (void);
PortableServer_POAManager bonobo_poa_manager (void);
PortableServer_POA bonobo_poa_get_threaded (ORBitThreadHint hint,
...);
PortableServer_POA bonobo_poa_get_threadedv (ORBitThreadHint hint,
va_list args);
PortableServer_POA bonobo_poa_new_from (PortableServer_POA tmpl,
const char *name,
const CORBA_PolicyList *opt_policies,
CORBA_Environment *opt_ev);
G_END_DECLS
#endif /* __LIBBONOBO_MAIN_H__ */
|