/usr/include/libbonoboui-2.0/bonobo/bonobo-file-selector-util.h is in libbonoboui2-dev 2.24.5-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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | /*
* bonobo-file-selector-util.h - functions for getting files from a
* selector
*
* Authors:
* Jacob Berkman <jacob@ximian.com>
*
* Copyright 2001 Ximian, Inc.
*
*/
#ifndef _BONOBO_FILE_SELECTOR_UTIL_H_
#define _BONOBO_FILE_SELECTOR_UTIL_H_
#include <glib.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
char *bonobo_file_selector_open (GtkWindow *parent,
gboolean enable_vfs,
const char *title,
const char *mime_types,
const char *default_path);
char **bonobo_file_selector_open_multi (GtkWindow *parent,
gboolean enable_vfs,
const char *title,
const char *mime_types,
const char *default_path);
char *bonobo_file_selector_save (GtkWindow *parent,
gboolean enable_vfs,
const char *title,
const char *mime_types,
const char *default_path,
const char *default_filename);
G_END_DECLS
#endif /* _BONOBO_FILE_SELECTOR_UTIL_H_ */
|