d8cd094f6a6baadcc4c4bb349125529f9c6ed1b7
[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 GnomeVFSResult captive_sandbox_parent_file_new_create(CaptiveFileParentObject *captive_file_parent_object,
34                 gboolean exclusive,guint perm);
35 GnomeVFSResult captive_sandbox_parent_file_close(CaptiveFileParentObject *captive_file_parent_object);
36 GnomeVFSResult captive_sandbox_parent_file_read(CaptiveFileParentObject *captive_file_parent_object,
37                 gpointer buffer,GnomeVFSFileSize num_bytes,GnomeVFSFileSize *bytes_read_return);
38 GnomeVFSResult captive_sandbox_parent_file_write(CaptiveFileParentObject *captive_file_parent_object,
39                 gconstpointer buffer,GnomeVFSFileSize num_bytes,GnomeVFSFileSize *bytes_written_return);
40 GnomeVFSResult captive_sandbox_parent_file_seek
41                 (CaptiveFileParentObject *captive_file_parent_object,GnomeVFSSeekPosition whence,GnomeVFSFileOffset offset);
42 GnomeVFSResult captive_sandbox_parent_file_tell
43                 (CaptiveFileParentObject *captive_file_parent_object,GnomeVFSFileOffset *offset_return);
44 GnomeVFSResult captive_sandbox_parent_file_remove(CaptiveFileParentObject *captive_file_parent_object);
45 GnomeVFSResult captive_sandbox_parent_file_file_info_get(CaptiveFileParentObject *captive_file_parent_object,
46                 GnomeVFSFileInfo *file_info);
47 GnomeVFSResult captive_sandbox_parent_file_file_info_set(CaptiveFileParentObject *captive_file_parent_object,
48     const GnomeVFSFileInfo *info,GnomeVFSSetFileInfoMask mask);
49 GnomeVFSResult captive_sandbox_parent_file_truncate
50                 (CaptiveFileParentObject *captive_file_parent_object,GnomeVFSFileSize file_size);
51 GnomeVFSResult captive_sandbox_parent_file_move
52                 (CaptiveFileParentObject *captive_file_parent_object_old,const gchar *pathname_new,gboolean force_replace);
53
54 G_END_DECLS
55
56
57 #endif /* _PARENT_FILE_H */