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.
37 lines
545 B
37 lines
545 B
/*++
|
|
|
|
Copyright (C) 1996-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Abstract:
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
|
|
#include "precomp.h"
|
|
#include <arena.h>
|
|
|
|
static class WbemComnInitializer
|
|
{
|
|
public:
|
|
|
|
WbemComnInitializer()
|
|
{
|
|
CWin32DefaultArena::WbemHeapInitialize( GetProcessHeap() );
|
|
}
|
|
|
|
} g_WbemComnInitializer;
|
|
|
|
void* __cdecl operator new ( size_t size )
|
|
{
|
|
return CWin32DefaultArena::WbemMemAlloc( size );
|
|
}
|
|
|
|
void __cdecl operator delete ( void* pv )
|
|
{
|
|
CWin32DefaultArena::WbemMemFree( pv );
|
|
}
|
|
|