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.

18 lines
312 B

  1. /*++
  2. Copyright (C) 2000-2001 Microsoft Corporation
  3. --*/
  4. #include "precomp.h"
  5. #include <arena.h>
  6. void* __cdecl operator new ( size_t size )
  7. {
  8. return CWin32DefaultArena::WbemMemAlloc( size );
  9. }
  10. void __cdecl operator delete ( void* pv )
  11. {
  12. CWin32DefaultArena::WbemMemFree( pv );
  13. }