'bool CopyFile2( CString sSrcFile, CString sDstFile ); // using "CopyFile" gives "unresolved external" link error in VC6'

use "FileCopy" instead
This commit is contained in:
Glenn Maynard
2003-12-21 05:59:52 +00:00
parent ba3ea672c3
commit 75a1048c75
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1101,7 +1101,7 @@ void FileWrite(RageFile& f, float fWrite)
f.PutLine( ssprintf("%f", fWrite) );
}
bool CopyFile2( CString sSrcFile, CString sDstFile )
bool FileCopy( CString sSrcFile, CString sDstFile )
{
RageFile in;
if( !in.Open(sSrcFile, RageFile::READ) )