3.0 is close!

This commit is contained in:
Chris Danford
2002-07-02 00:27:58 +00:00
parent f8118fea49
commit 374eb8c6d7
28 changed files with 337 additions and 318 deletions
+3 -1
View File
@@ -340,7 +340,9 @@ DWORD GetFileSizeInBytes( const CString &sFilePath )
NULL // handle to file with attributes to
);
return GetFileSize( hFile, NULL );
DWORD dwSize = GetFileSize( hFile, NULL );
CloseHandle( hFile );
return dwSize;
}
bool DoesFileExist( const CString &sPath )