Wii IPC file handling: Made some comments and changes to try to locate the Mario Kart and SSBB errors, in case they are file handling errors

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1327 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2008-11-29 08:49:22 +00:00
parent f4cae8c9b7
commit 409720b91a
7 changed files with 230 additions and 48 deletions

View File

@ -172,6 +172,15 @@ bool Rename(const char *srcFilename, const char *destFilename)
return (rename(srcFilename, destFilename) == 0);
}
bool Copy(const char *srcFilename, const char *destFilename)
{
#ifdef _WIN32
return CopyFile(srcFilename, destFilename, FALSE);
#else
#endif
}
std::string GetUserDirectory()
{
#ifdef _WIN32