Return referrenced VFS: captive_(directory|file)_get_vfs() -> *_ref_vfs()
[captive.git] / src / libcaptive / sandbox / parent-File.h
1 /* $Id$
2  * Include file for CORBA/ORBit server side of File object of sandbox_parent()
3  * Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #ifndef _PARENT_FILE_H
21 #define _PARENT_FILE_H 1
22
23
24 #include <glib/gmacros.h>
25 #include <glib-object.h>
26 #include <libgnomevfs/gnome-vfs-result.h>       /* for GnomeVFSResult */
27 #include "../client/file-parent.h"
28
29
30 G_BEGIN_DECLS
31
32 GnomeVFSResult captive_sandbox_parent_file_new_open(CaptiveFileParentObject *captive_file_parent_object,
33                 const gchar *pathname,GnomeVFSOpenMode mode);
34 GnomeVFSResult captive_sandbox_parent_file_new_create(CaptiveFileParentObject *captive_file_parent_object,
35                 const gchar *pathname,GnomeVFSOpenMode mode,gboolean exclusive,guint perm);
36 GnomeVFSResult captive_sandbox_parent_file_close(CaptiveFileParentObject *captive_file_parent_object);
37 GnomeVFSResult captive_sandbox_parent_file_read(CaptiveFileParentObject *captive_file_parent_object,
38                 gpointer buffer,GnomeVFSFileSize num_bytes,GnomeVFSFileSize *bytes_read_return);
39 GnomeVFSResult captive_sandbox_parent_file_write(CaptiveFileParentObject *captive_file_parent_object,
40                 gconstpointer buffer,GnomeVFSFileSize num_bytes,GnomeVFSFileSize *bytes_written_return);
41 GnomeVFSResult captive_sandbox_parent_file_seek
42                 (CaptiveFileParentObject *captive_file_parent_object,GnomeVFSSeekPosition whence,GnomeVFSFileOffset offset);
43 GnomeVFSResult captive_sandbox_parent_file_tell
44                 (CaptiveFileParentObject *captive_file_parent_object,GnomeVFSFileOffset *offset_return);
45 GnomeVFSResult captive_sandbox_parent_file_remove(CaptiveFileParentObject *captive_file_parent_object);
46 GnomeVFSResult captive_sandbox_parent_file_file_info_get(CaptiveFileParentObject *captive_file_parent_object,
47                 GnomeVFSFileInfo *file_info);
48 GnomeVFSResult captive_sandbox_parent_file_file_info_set(CaptiveFileParentObject *captive_file_parent_object,
49     const GnomeVFSFileInfo *info,GnomeVFSSetFileInfoMask mask);
50 GnomeVFSResult captive_sandbox_parent_file_truncate
51                 (CaptiveFileParentObject *captive_file_parent_object,GnomeVFSFileSize file_size);
52 GnomeVFSResult captive_sandbox_parent_file_move
53                 (CaptiveFileParentObject *captive_file_parent_object_old,const gchar *pathname_new,gboolean force_replace);
54
55 G_END_DECLS
56
57
58 #endif /* _PARENT_FILE_H */