summaryrefslogtreecommitdiff
path: root/vfs/uVFSprototypes.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-10-24 17:09:47 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-10-24 17:09:47 +0200
commit307e8d7e95798d0c113a3db0f6a3a4b063f8c054 (patch)
tree8105e63042dff6a5d8008135e1ff74a5256c03a4 /vfs/uVFSprototypes.pas
parenta55a55d43d949b2b33aa0337aa2695d838e6a875 (diff)
downloadtuxcmd-307e8d7e95798d0c113a3db0f6a3a4b063f8c054.tar.xz
Rename VFSCopyOut and VFSCopyIn functions
Diffstat (limited to 'vfs/uVFSprototypes.pas')
-rw-r--r--vfs/uVFSprototypes.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/vfs/uVFSprototypes.pas b/vfs/uVFSprototypes.pas
index 2de5ec4..647f1c6 100644
--- a/vfs/uVFSprototypes.pas
+++ b/vfs/uVFSprototypes.pas
@@ -259,13 +259,13 @@ type
// TODO: Runs the command read from inside the archive (typically installing the rpm package)
- TVFSCopyOut = function (g:TVFSGlobs; const sSrcName, sDstName: PChar; Append: LongBool): TVFSResult; cdecl;
+ TVFSCopyToLocal = function (g:TVFSGlobs; const sSrcName, sDstName: PChar; Append: LongBool): TVFSResult; cdecl;
// Performs the copy process from inside of module to the file in the local system
// (thus sSrcName is a path from inside of module and sDstName is path in the local filesystem where the file should be copied)
// The data pointer is then used to call the callback function in
// Note: if you need to transfer a file between two VFS modules, you need to do it manually - either first copy to local FS or use the Open, Read, Write functions of the module (NOTE: both VFS modules have to support these functions)
- TVFSCopyIn = function (g:TVFSGlobs; const sSrcName, sDstName: PChar; Append: LongBool): TVFSResult; cdecl;
+ TVFSCopyFromLocal = function (g:TVFSGlobs; const sSrcName, sDstName: PChar; Append: LongBool): TVFSResult; cdecl;
// Performs the copy process from the local filesystem into the module