2012-08-16 10:35:15 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Piotr Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include "msvcp.h"
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* ?deallocate@?$allocator@D@std@@QAEXPADI@Z */
|
|
|
|
/* ?deallocate@?$allocator@D@std@@QEAAXPEAD_K@Z */
|
2012-09-14 12:45:01 +02:00
|
|
|
void MSVCP_allocator_char_deallocate(void *this, char *ptr, MSVCP_size_t size)
|
2012-08-16 10:35:15 +02:00
|
|
|
{
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?allocate@?$allocator@D@std@@QAEPADI@Z */
|
|
|
|
/* ?allocate@?$allocator@D@std@@QEAAPEAD_K@Z */
|
2012-09-14 12:45:01 +02:00
|
|
|
char* MSVCP_allocator_char_allocate(void *this, MSVCP_size_t count)
|
2012-08-16 10:35:15 +02:00
|
|
|
{
|
|
|
|
return MSVCRT_operator_new(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocator<wchar_t> */
|
|
|
|
/* ?deallocate@?$allocator@_W@std@@QAEXPA_WI@Z */
|
|
|
|
/* ?deallocate@?$allocator@_W@std@@QEAAXPEA_W_K@Z */
|
2012-09-14 12:45:01 +02:00
|
|
|
void MSVCP_allocator_wchar_deallocate(void *this,
|
2012-08-16 10:35:15 +02:00
|
|
|
wchar_t *ptr, MSVCP_size_t size)
|
|
|
|
{
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?allocate@?$allocator@_W@std@@QAEPA_WI@Z */
|
|
|
|
/* ?allocate@?$allocator@_W@std@@QEAAPEA_W_K@Z */
|
2012-09-14 12:45:01 +02:00
|
|
|
wchar_t* MSVCP_allocator_wchar_allocate(void *this, MSVCP_size_t count)
|
2012-08-16 10:35:15 +02:00
|
|
|
{
|
|
|
|
if(UINT_MAX/count < sizeof(wchar_t)) {
|
|
|
|
throw_exception(EXCEPTION_BAD_ALLOC, NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MSVCRT_operator_new(count * sizeof(wchar_t));
|
|
|
|
}
|