/usr/include/libbonobo-2.0/bonobo/bonobo-persist-client.h is in libbonobo2-dev 2.32.1-3.
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 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/**
* bonobo-persist-client.h: Client-side utility functions dealing with persistancy
*
* Author:
* ÉRDI Gergõ <cactus@cactus.rulez.org>
*
* Copyright 2001 Gergõ Érdi
*/
#ifndef _BONOBO_PERSIST_CLIENT_H_
#define _BONOBO_PERSIST_CLIENT_H_
#include <bonobo/bonobo-object.h>
G_BEGIN_DECLS
void bonobo_object_save_to_stream (Bonobo_Unknown object,
Bonobo_Stream stream,
CORBA_Environment *opt_ev);
Bonobo_Unknown bonobo_object_from_stream (Bonobo_Stream stream,
CORBA_Environment *opt_ev);
G_END_DECLS
#endif /* _BONOBO_PERSIST_CLIENT_H_ */
|