Source code of Windows XP (NT5)
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.

25 lines
330 B

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