1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ |
---|
2 | /* gnome-vfs-find-directory.h - Public utility functions for the GNOME Virtual |
---|
3 | File System. |
---|
4 | |
---|
5 | Copyright (C) 2000 Eazel, Inc. |
---|
6 | |
---|
7 | The Gnome Library is free software; you can redistribute it and/or |
---|
8 | modify it under the terms of the GNU Library General Public License as |
---|
9 | published by the Free Software Foundation; either version 2 of the |
---|
10 | License, or (at your option) any later version. |
---|
11 | |
---|
12 | The Gnome Library is distributed in the hope that it will be useful, |
---|
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
15 | Library General Public License for more details. |
---|
16 | |
---|
17 | You should have received a copy of the GNU Library General Public |
---|
18 | License along with the Gnome Library; see the file COPYING.LIB. If not, |
---|
19 | write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
20 | Boston, MA 02111-1307, USA. |
---|
21 | |
---|
22 | Authors: Pavel Cisler <pavel@eazel.com> |
---|
23 | */ |
---|
24 | |
---|
25 | #ifndef _GNOME_VFS_FIND_DIRECTORY_H |
---|
26 | #define _GNOME_VFS_FIND_DIRECTORY_H |
---|
27 | |
---|
28 | #include <glib.h> |
---|
29 | #include "gnome-vfs-types.h" |
---|
30 | |
---|
31 | GnomeVFSResult gnome_vfs_find_directory (GnomeVFSURI *near_uri, |
---|
32 | GnomeVFSFindDirectoryKind kind, |
---|
33 | GnomeVFSURI **result, |
---|
34 | gboolean create_if_needed, |
---|
35 | gboolean find_if_needed, |
---|
36 | guint permissions); |
---|
37 | #endif |
---|