wxIsoFile branch: fix missing includes and gcc compilation stuffs.

git-svn-id: http://pcsx2.googlecode.com/svn/branches/wxIsoFile@3941 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2010-10-18 15:46:05 +00:00
parent 2b4d7cc384
commit d5bc947e8d
5 changed files with 19 additions and 19 deletions

View File

@ -231,5 +231,5 @@ extern bool pxIsEnglish( int id );
#define pxE(key, english) pxExpandMsg( wxT(key), english )
#include "Utilities/ScopedPtr.h"
#include "Utilities/ScopedMalloc.h"
#include "Utilities/ScopedAlloc.h"
#include "Utilities/Assertions.h"

View File

@ -43,7 +43,7 @@
namespace Exception
{
int MakeNewType();
BaseException* FromErrno( const wxString& streamname, errno_t errcode );
BaseException* FromErrno( const wxString& streamname, int errcode );
// --------------------------------------------------------------------------------------
// BaseException

View File

@ -154,21 +154,21 @@ public:
virtual void Alloc( size_t newsize )
{
safe_free(m_buffer);
m_size = newsize;
safe_free(this->m_buffer);
this->m_size = newsize;
if (!m_size) return;
m_buffer = (T*)malloc( m_size * sizeof(T) );
if (!m_buffer)
this->m_buffer = (T*)malloc( m_size * sizeof(T) );
if (!this->m_buffer)
throw Exception::OutOfMemory("ScopedAlloc");
}
virtual void Resize( size_t newsize )
{
m_size = newsize;
m_buffer = (T*)realloc(m_buffer * sizeof(T), newsize);
this->m_size = newsize;
this->m_buffer = (T*)realloc(this->m_buffer * sizeof(T), newsize);
if (!m_buffer)
if (!this->m_buffer)
throw Exception::OutOfMemory("ScopedAlloc::Resize");
}
};
@ -198,21 +198,21 @@ public:
virtual void Alloc( size_t newsize )
{
safe_aligned_free(m_buffer);
m_size = newsize;
if (!m_size) return;
safe_aligned_free(this->m_buffer);
this->m_size = newsize;
if (!this->m_size) return;
m_buffer = (T*)_aligned_malloc( m_size * sizeof(T), align );
if (!m_buffer)
this->m_buffer = (T*)_aligned_malloc( this->m_size * sizeof(T), align );
if (!this->m_buffer)
throw Exception::OutOfMemory(L"ScopedAlignedAlloc");
}
virtual void Resize( size_t newsize )
{
m_size = newsize;
m_buffer = (T*)_aligned_realloc(m_buffer, newsize * sizeof(T), align);
this->m_size = newsize;
this->m_buffer = (T*)_aligned_realloc(this->m_buffer, newsize * sizeof(T), align);
if (!m_buffer)
if (!this->m_buffer)
throw Exception::OutOfMemory(L"ScopedAlignedAlloc::Resize");
}
};

View File

@ -17,7 +17,7 @@
#include "Dependencies.h"
#include "SafeArray.h"
#include "ScopedMalloc.h"
#include "ScopedAlloc.h"
#include <wx/tokenzr.h>

View File

@ -245,7 +245,7 @@ wxString Exception::Stream::FormatDisplayMessage() const
// Translates an Errno code into an exception.
// Throws an exception based on the given error code (usually taken from ANSI C's errno)
BaseException* Exception::FromErrno( const wxString& streamname, errno_t errcode )
BaseException* Exception::FromErrno( const wxString& streamname, int errcode )
{
pxAssumeDev( errcode != 0, "Invalid NULL error code? (errno)" );