~ubuntu-branches/debian/experimental/lftp/experimental

« back to all changes in this revision

Viewing changes to src/LocalAccess.h

  • Committer: Package Import Robot
  • Author(s): Noël Köthe
  • Date: 2015-08-21 16:06:22 UTC
  • mfrom: (1.1.20) (24.1.38 sid)
  • Revision ID: package-import@ubuntu.com-20150821160622-lckdmbiqx16wefgy
Tags: 4.6.4-1
new upstream release 2015-08-21

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * lftp and utils
 
2
 * lftp - file transfer program
3
3
 *
4
 
 * Copyright (c) 1996-2005 by Alexander V. Lukyanov (lav@yars.free.net)
 
4
 * Copyright (c) 1996-2012 by Alexander V. Lukyanov (lav@yars.free.net)
5
5
 *
6
6
 * This program is free software; you can redistribute it and/or modify
7
7
 * it under the terms of the GNU General Public License as published by
14
14
 * GNU General Public License for more details.
15
15
 *
16
16
 * You should have received a copy of the GNU General Public License
17
 
 * along with this program; if not, write to the Free Software
18
 
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
18
 */
20
19
 
21
 
/* $Id: LocalAccess.h,v 1.16 2009/07/17 12:54:26 lav Exp $ */
22
 
 
23
20
#ifndef LOCALACCESS_H
24
21
#define LOCALACCESS_H
25
22
 
48
45
   static FileAccess *New();
49
46
   bool SameLocationAs(const FileAccess *fa) const;
50
47
 
51
 
   int Read(void *buf,int size);
 
48
   int Read(Buffer *buf,int size);
52
49
   int Write(const void *buf,int size);
53
50
   int StoreStatus();
54
51
   int Do();