/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* gnome-vfs-handle.h - Handle object for GNOME VFS files. Copyright (C) 1999 Free Software Foundation The Gnome Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The Gnome Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with the Gnome Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Author: Ettore Perazzoli */ #ifndef GNOME_VFS_HANDLE_H #define GNOME_VFS_HANDLE_H #include #include #include G_BEGIN_DECLS typedef gpointer GnomeVFSMethodHandle; /** * GnomeVFSHandle: * * Handle to a file, a handle is obtained using gnome_vfs_open and gnome_vfs_create * family of functions on the file. A handle represents a file stream, gnome_vfs_close, * gnome_vfs_write, gnome_vfs_read and all the other operations take a GnomeVFSHandle * that identifies the file where the operation is going to be performed. **/ typedef struct GnomeVFSHandle GnomeVFSHandle; /** * GnomeVFSOpenMode: * @GNOME_VFS_OPEN_NONE: * @GNOME_VFS_OPEN_READ: * @GNOME_VFS_OPEN_WRITE: * @GNOME_VFS_OPEN_RANDOM: * * Mode in which files are opened. If GNOME_VFS_OPEN_RANDOM is not used, the * file will be have to be accessed sequentially. **/ typedef enum { GNOME_VFS_OPEN_NONE = 0, GNOME_VFS_OPEN_READ = 1 << 0, GNOME_VFS_OPEN_WRITE = 1 << 1, GNOME_VFS_OPEN_RANDOM = 1 << 2 } GnomeVFSOpenMode; /** * GnomeVFSSeekPosition: * @GNOME_VFS_SEEK_START: Start of the file. * @GNOME_VFS_SEEK_CURRENT: Current position. * @GNOME_VFS_SEEK_END: End of the file. * * This is used to specify the start position for seek operations. **/ typedef enum { GNOME_VFS_SEEK_START, GNOME_VFS_SEEK_CURRENT, GNOME_VFS_SEEK_END } GnomeVFSSeekPosition; G_END_DECLS #endif /* GNOME_VFS_HANDLE_H */