mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00:00
Wrapped fopen/close/read/write functions inside a simple "IOFile" class. Reading, writing, and error checking became simpler in most cases. It should be near impossible to forget to close a file now that the destructor takes care of it. (I hope this fixes Issue 3635) I have tested the functionality of most things, but it is possible I broke something. :p
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7328 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
4f69672b2b
commit
59fd1008ca
68 changed files with 1112 additions and 1154 deletions
|
@ -20,7 +20,7 @@
|
|||
#include "FileHandlerARC.h"
|
||||
#include "StringUtil.h"
|
||||
#include "Blob.h"
|
||||
|
||||
#include "FileUtil.h"
|
||||
|
||||
#define ARC_ID 0x55aa382d
|
||||
|
||||
|
@ -144,16 +144,9 @@ CARCFile::ExportFile(const std::string& _rFullPath, const std::string& _rExportF
|
|||
return(false);
|
||||
}
|
||||
|
||||
FILE* pFile = fopen(_rExportFilename.c_str(), "wb");
|
||||
File::IOFile pFile(_rExportFilename, "wb");
|
||||
|
||||
if (pFile == NULL)
|
||||
{
|
||||
return(false);
|
||||
}
|
||||
|
||||
fwrite(&m_pBuffer[pFileInfo->m_Offset], (size_t) pFileInfo->m_FileSize, 1, pFile);
|
||||
fclose(pFile);
|
||||
return(true);
|
||||
return pFile.WriteBytes(&m_pBuffer[pFileInfo->m_Offset], (size_t) pFileInfo->m_FileSize);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue