Patch level :10.0

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :aggiunto xvt_fsys_rename_file basata sulla wxRenameFile


git-svn-id: svn://10.65.10.50/trunk@19191 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2009-08-06 09:12:04 +00:00
parent c594e8cf05
commit 2112dfe99d
2 changed files with 5 additions and 0 deletions

View File

@ -4093,6 +4093,10 @@ BOOLEAN xvt_fsys_removefile(const char *pathname)
return xvt_fsys_remove_file(pathname);
}
BOOLEAN xvt_fsys_rename_file(const char *src_pathname, const char *dst_pathname)
{
return wxRenameFile(src_pathname, dst_pathname);
}
///////////////////////////////////////////////////////////
// Timers

View File

@ -185,6 +185,7 @@ XVTDLL BOOLEAN xvt_fsys_mkdir(const char *pathname);
XVTDLL BOOLEAN xvt_fsys_rmdir(const char *pathname);
XVTDLL BOOLEAN xvt_fsys_removefile(const char *pathname); // DEPRECATED!
XVTDLL BOOLEAN xvt_fsys_remove_file(const char *pathname);
XVTDLL BOOLEAN xvt_fsys_rename_file(const char *src_pathname, const char *dst_pathname);
XVTDLL int xvt_fsys_access(const char *pathname, int mode);
XVTDLL BOOLEAN xvt_fsys_file_exists(const char *pathname);
XVTDLL int xvt_fsys_get_campo_stp_value(const char* name, char* value, int valsize);