Leaked source code of windows server 2003
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.
 
 
 
 
 
 

24 lines
353 B

/*++
Copyright (C) 2000-2001 Microsoft Corporation
Module Name:
Abstract:
History:
--*/
#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 );
}