source: trunk/third/gnome-vfs/libgnomevfs/gnome-vfs-xfer.h @ 15497

Revision 15497, 2.1 KB checked in by ghudson, 24 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r15496, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2/* gnome-vfs-xfer.h - File transfers in the GNOME Virtual File System.
3
4   Copyright (C) 1999 Free Software Foundation
5
6   The Gnome Library is free software; you can redistribute it and/or
7   modify it under the terms of the GNU Library General Public License as
8   published by the Free Software Foundation; either version 2 of the
9   License, or (at your option) any later version.
10
11   The Gnome Library is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   Library General Public License for more details.
15
16   You should have received a copy of the GNU Library General Public
17   License along with the Gnome Library; see the file COPYING.LIB.  If not,
18   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19   Boston, MA 02111-1307, USA.
20
21   Author: Ettore Perazzoli <ettore@comm2000.it> */
22
23#ifndef _GNOME_VFS_COMPLEX_OPS_H
24#define _GNOME_VFS_COMPLEX_OPS_H
25
26
27GnomeVFSResult  gnome_vfs_xfer_uri_list (const GList *source_uri_list,
28                                         const GList *target_uri_list,
29                                         GnomeVFSXferOptions xfer_options,
30                                         GnomeVFSXferErrorMode error_mode,
31                                         GnomeVFSXferOverwriteMode
32                                                overwrite_mode,
33                                         GnomeVFSXferProgressCallback
34                                                progress_callback,
35                                         gpointer data);
36
37GnomeVFSResult  gnome_vfs_xfer_uri      (const GnomeVFSURI *source_uri,
38                                         const GnomeVFSURI *target_uri,
39                                         GnomeVFSXferOptions xfer_options,
40                                         GnomeVFSXferErrorMode error_mode,
41                                         GnomeVFSXferOverwriteMode
42                                                overwrite_mode,
43                                         GnomeVFSXferProgressCallback
44                                                progress_callback,
45                                         gpointer data);
46
47GnomeVFSResult gnome_vfs_xfer_delete_list    (const GList *source_uri_list,
48                                         GnomeVFSXferErrorMode error_mode,
49                                         GnomeVFSXferOptions xfer_options,
50                                         GnomeVFSXferProgressCallback
51                                                progress_callback,
52                                         gpointer data);
53
54#endif /* _GNOME_VFS_COMPLEX_OPS_H */
Note: See TracBrowser for help on using the repository browser.