Ejemplo n.º 1
0
void *__cdecl operator new[] ( unsigned int nSize )
{
	return AllocUnattributed( nSize );
}
Ejemplo n.º 2
0
void *__cdecl _heap_alloc( size_t nSize )
{
	return AllocUnattributed( nSize );
}
Ejemplo n.º 3
0
void *__cdecl _nh_malloc( size_t nSize, int )
{
	return AllocUnattributed( nSize );
}
Ejemplo n.º 4
0
void *_calloc_base( size_t nSize )
{
	void *pMem = AllocUnattributed( nSize );
	memset(pMem, 0, nSize);
	return pMem;
}
Ejemplo n.º 5
0
// crt
void * __cdecl _malloc_crt(size_t size)
{
	return AllocUnattributed( size );
}
Ejemplo n.º 6
0
void *_malloc_base( size_t nSize )
{
	return AllocUnattributed( nSize );
}
Ejemplo n.º 7
0
ALLOC_CALL void *calloc( size_t nCount, size_t nElementSize )
{
	void *pMem = AllocUnattributed( nElementSize * nCount );
	memset(pMem, 0, nElementSize * nCount);
	return pMem;
}
Ejemplo n.º 8
0
ALLOC_CALL void *malloc( size_t nSize )
{
	return AllocUnattributed( nSize );
}
Ejemplo n.º 9
0
void *__cdecl operator new[] ( size_t nSize )
{
	return AllocUnattributed( nSize );
}
Ejemplo n.º 10
0
void *__cdecl operator new( size_t nSize )
#endif
{
	return AllocUnattributed( nSize );
}