You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
493 B
18 lines
493 B
//******************************************************************************
|
|
//
|
|
// Copyright (c) 1999-2000, Microsoft Corporation, All rights reserved
|
|
//
|
|
//*****************************************************************************
|
|
|
|
#include "precomp.h"
|
|
#include <arena.h>
|
|
|
|
void* __cdecl operator new ( size_t size )
|
|
{
|
|
return CWin32DefaultArena::WbemMemAlloc( size );
|
|
}
|
|
|
|
void __cdecl operator delete ( void* pv )
|
|
{
|
|
CWin32DefaultArena::WbemMemFree( pv );
|
|
}
|