This file is indexed.

/usr/include/libbonobo-2.0/bonobo/bonobo-stream.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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * bonobo-stream.h: Stream manipulation, abstract class
 *
 * Author:
 *     Miguel de Icaza (miguel@gnu.org).
 *
 * Copyright 1999, 2000 Helix Code, Inc.
 */

/*
 * Deprecation Warning: this object should not be used
 * directly. Instead, use a moniker-based approach. For example,
 * bonobo_get_object("file:/tmp/foo.txt", "IDL:Bonobo/Stream:1.0", &ev)
 * will return a Bonobo_Stream for file /tmp/foo.txt, for *reading* only!
 * To obtain a Bonobo_Stream for *writing*, you have to:
 *   1. Get a Bonobo_Storage for the directory containing the file you
 * wish to write (see comment in bonobo-storage.h for how to do this)
 *   2. Use the openStream method of the Bonobo_Storage, with a
 * Bonobo_Storage_WRITE or Bonobo_Storage_CREATE flag. The 'path'
 * argument should be filename only, without directories. If the file
 * already exists, you may need to call store.erase(filename) first.
 */
#ifndef _BONOBO_STREAM_H_
#define _BONOBO_STREAM_H_

G_BEGIN_DECLS

#include <bonobo/bonobo-storage.h>

G_END_DECLS

#endif /* _BONOBO_STREAM_H_ */